Radish alpha
r
rad:z6cFWeWpnZNHh9rUW8phgA3b5yGt
Git libraries for Radicle
Radicle
Git
Merge remote-tracking branch 'origin/git-ref-format-bump-version'
Fintan Halpenny committed 3 years ago
commit e0358441b97d9e3cdc28f2b390a9782d506c9937
parent f40d5fb
7 files changed +24 -8
modified git-ref-format/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "git-ref-format"
-
version = "0.1.0"
+
version = "0.2.0"
authors = [
  "Kim Altintop <kim@eagain.st>",
  "Fintan Halpenny <fintan.halpenny@gmail.com>",
@@ -22,10 +22,10 @@ percent-encoding = ["git-ref-format-core/percent-encoding"]
serde = ["git-ref-format-core/serde"]

[dependencies.git-ref-format-core]
-
version = "0.1.0"
+
version = "0.2.0"
path = "./core"

[dependencies.git-ref-format-macro]
-
version = "0.1.0"
+
version = "0.2.0"
path = "./macro"
optional = true
added git-ref-format/core/CHANGELOG.md
@@ -0,0 +1,11 @@
+
# CHANGELOG
+

+
## Version 0.2.0
+

+
* 2022-12-16 Update to rust-1.66 [8d451e3](https://github.com/radicle-dev/radicle-git/commit/8d451e3d9d6c0121b0ed3e4ac6cbf710625e9f9d)
+
* 2022-12-08 Fix to deserialization [db7f2d4](https://github.com/radicle-dev/radicle-git/commit/db7f2d40e32ef0fac7425054c4c49e22cb8bc70f)
+
* 2022-11-18 Remove link-literals feature [d45d63b](https://github.com/radicle-dev/radicle-git/commit/d45d63b7ceb1d03b80f6c47749b4b3e3ebb99e70)
+
* 2022-11-16 Add well-known refspec components [2b5a34a](https://github.com/radicle-dev/radicle-git/commit/2b5a34a703c182ff48d6c83ff3fa4256b4f37624)
+
* 2022-11-15 DoubleEndedIterator for Components [cf1594c](https://github.com/radicle-dev/radicle-git/commit/cf1594cf43e23c9fc8f74cf69e22f81227e82f2b)
+
* 2022-11-11 Add QualifiedPattern and NamespacedPattern [6479ba0](https://github.com/radicle-dev/radicle-git/commit/6479ba091fa3ee3b16fba61138cfd8c6ec6d985d)
+
* 2022-11-16 Component::from_refstr  [d6c7bb2](https://github.com/radicle-dev/radicle-git/commit/d6c7bb29abc0f0050e2efe8de47397eaa4564f6f)
modified git-ref-format/core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "git-ref-format-core"
-
version = "0.1.0"
+
version = "0.2.0"
authors = ["Kim Altintop <kim@eagain.st>"]
edition = "2018"
license = "GPL-3.0-or-later"
added git-ref-format/macro/CHANGELOG.md
@@ -0,0 +1,5 @@
+
# CHANGELOG
+

+
## Version 0.2.0
+

+
* 2022-11-16 Import Qualified within macro [629191f](https://github.com/radicle-dev/radicle-git/commit/629191f55afe77c00808cfe3d6f35d4cff1f4f73)
modified git-ref-format/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "git-ref-format-macro"
-
version = "0.1.0"
+
version = "0.2.0"
authors = ["Kim Altintop <kim@eagain.st>"]
edition = "2018"
license = "GPL-3.0-or-later"
@@ -18,5 +18,5 @@ quote = "1"
syn = "1"

[dependencies.git-ref-format-core]
-
version = "0.1.0"
+
version = "0.2.0"
path = "../core"
modified radicle-git-ext/Cargo.toml
@@ -24,7 +24,7 @@ default-features = false
features = ["vendored-libgit2"]

[dependencies.git-ref-format]
-
version = "0.1.0"
+
version = "0.2.0"
path = "../git-ref-format"

[dependencies.serde]
modified radicle-surf/Cargo.toml
@@ -38,7 +38,7 @@ default-features = false
features = ["vendored-libgit2"]

[dependencies.git-ref-format]
-
version = "0.1.0"
+
version = "0.2.0"
path = "../git-ref-format"
features = ["macro", "serde"]