chore: prepare crates release
This prepares the crate versions for a new release. The version bumps were
determined by the cargo-semver-checks tool.
However, there were some issues with the radicle-fetch crate – where when
attempting to check it, it was unable to compile due to the previous version
expecting the kind of Doc with a generic parameter. I believe this is due to
the version for radicle being specified as simply 0. This prompted changing
the version specifications to use major.minor for all the internal crates.
This, for example, would mean that radicle-fetch that relies on 0.15 can use
>=0.15.0,<0.16.0 – allowing any patch versions but must require a minor
version bump.
11 files changed
+35
-34
caf9e241
→
f4c8ff7a
modified Cargo.lock
@@ -2580,7 +2580,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -2618,7 +2618,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -2662,7 +2662,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -2710,7 +2710,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -2739,7 +2739,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -2772,7 +2772,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified flake.nix
@@ -282,6 +282,7 @@
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified radicle-cli-test/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-cli-test"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-cli/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-cli"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -49,24 +49,20 @@ zeroize = { version = "1.1" }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -74,5 +70,9 @@ pretty_assertions = { version = "1.3.0" }
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
modified radicle-cob/Cargo.toml
@@ -35,12 +35,12 @@ features = ["vendored-libgit2"]
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-crypto/Cargo.toml
@@ -4,7 +4,7 @@ description = "Radicle cryptographic primitives"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -46,7 +46,7 @@ optional = true
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-fetch/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-fetch"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -24,4 +24,4 @@ thiserror = { version = "1" }
|
|
|
|
|
|
| - | |
| + | |
modified radicle-node/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-node"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -47,16 +47,16 @@ thiserror = { version = "1" }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-remote-helper/Cargo.toml
@@ -16,15 +16,15 @@ radicle-git-ext = { version = "0.8.0" }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-term/Cargo.toml
@@ -34,7 +34,7 @@ optional = true
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle/Cargo.toml
@@ -4,7 +4,7 @@ description = "Radicle standard library"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -54,16 +54,16 @@ features = ["vendored-libgit2"]
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|