Skip to content
Snippets Groups Projects
Commit f8e98771 authored by Éloïs's avatar Éloïs
Browse files

v0.44.1

parent ebbfa32d
No related branches found
No related tags found
No related merge requests found
Pipeline #10996 passed
...@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate ## [Unreleased] - ReleaseDate
## [0.44.1] - 2021-02-27
## [0.44.0] - 2021-02-27 ## [0.44.0] - 2021-02-27
## [0.43.2] - 2021-02-21 ## [0.43.2] - 2021-02-21
...@@ -121,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -121,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial version. Initial version.
<!-- next-url --> <!-- next-url -->
[Unreleased]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.44.0...HEAD [Unreleased]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.44.1...HEAD
[0.44.1]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.44.0...v0.44.1
[0.44.0]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.2...v0.44.0 [0.44.0]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.2...v0.44.0
[0.43.2]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.1...v0.43.2 [0.43.2]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.1...v0.43.2
[0.43.1]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.0...v0.43.1 [0.43.1]: https://git.duniter.org/libs/dubp-rs-libs/compare/v0.43.0...v0.43.1
......
...@@ -417,7 +417,7 @@ dependencies = [ ...@@ -417,7 +417,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp" name = "dubp"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"dubp-block", "dubp-block",
"dubp-common", "dubp-common",
...@@ -430,7 +430,7 @@ dependencies = [ ...@@ -430,7 +430,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp-block" name = "dubp-block"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"dubp-documents", "dubp-documents",
...@@ -446,7 +446,7 @@ dependencies = [ ...@@ -446,7 +446,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp-common" name = "dubp-common"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"dup-crypto", "dup-crypto",
...@@ -459,7 +459,7 @@ dependencies = [ ...@@ -459,7 +459,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp-documents" name = "dubp-documents"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"beef", "beef",
"dubp-wallet", "dubp-wallet",
...@@ -474,7 +474,7 @@ dependencies = [ ...@@ -474,7 +474,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp-documents-parser" name = "dubp-documents-parser"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"dubp-documents", "dubp-documents",
"json-pest-parser", "json-pest-parser",
...@@ -487,7 +487,7 @@ dependencies = [ ...@@ -487,7 +487,7 @@ dependencies = [
[[package]] [[package]]
name = "dubp-wallet" name = "dubp-wallet"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"dubp-common", "dubp-common",
...@@ -502,7 +502,7 @@ dependencies = [ ...@@ -502,7 +502,7 @@ dependencies = [
[[package]] [[package]]
name = "dup-crypto" name = "dup-crypto"
version = "0.44.0" version = "0.44.1"
dependencies = [ dependencies = [
"aes", "aes",
"arrayvec", "arrayvec",
......
...@@ -7,18 +7,18 @@ license = "AGPL-3.0" ...@@ -7,18 +7,18 @@ license = "AGPL-3.0"
name = "dubp" name = "dubp"
readme = "README.md" readme = "README.md"
repository = "https://git.duniter.org/libs-dupb-rs-libs" repository = "https://git.duniter.org/libs-dupb-rs-libs"
version = "0.44.0" version = "0.44.1"
[lib] [lib]
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
dup-crypto = { path = "crypto", default-features = false, version = "0.44.0", features = ["scrypt"] } dup-crypto = { path = "crypto", default-features = false, version = "0.44.1", features = ["scrypt"] }
dubp-common = { path = "common", version = "0.44.0", features = ["crypto_scrypt"] } dubp-common = { path = "common", version = "0.44.1", features = ["crypto_scrypt"] }
dubp-wallet = { path = "wallet", version = "0.44.0", features = ["crypto_scrypt"] } dubp-wallet = { path = "wallet", version = "0.44.1", features = ["crypto_scrypt"] }
dubp-documents = { path = "documents", version = "0.44.0", features = ["crypto_scrypt"] } dubp-documents = { path = "documents", version = "0.44.1", features = ["crypto_scrypt"] }
dubp-documents-parser = { path = "documents-parser", version = "0.44.0", features = ["crypto_scrypt"] } dubp-documents-parser = { path = "documents-parser", version = "0.44.1", features = ["crypto_scrypt"] }
dubp-block = { path = "block", version = "0.44.0", features = ["crypto_scrypt"] } dubp-block = { path = "block", version = "0.44.1", features = ["crypto_scrypt"] }
[features] [features]
default = ["crypto_assembly"] default = ["crypto_assembly"]
......
[package] [package]
name = "dubp-block" name = "dubp-block"
version = "0.44.0" version = "0.44.1"
authors = ["elois <elois@duniter.org>"] authors = ["elois <elois@duniter.org>"]
description = "Handle DUBP block (DUBP: DUniter Blockhain Protocol)." description = "Handle DUBP block (DUBP: DUniter Blockhain Protocol)."
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
...@@ -13,8 +13,8 @@ edition = "2018" ...@@ -13,8 +13,8 @@ edition = "2018"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
dubp-documents = { path = "../documents", default-features = false, version = "0.44.0" } dubp-documents = { path = "../documents", default-features = false, version = "0.44.1" }
dubp-documents-parser = { path = "../documents-parser", default-features = false, version = "0.44.0" } dubp-documents-parser = { path = "../documents-parser", default-features = false, version = "0.44.1" }
json-pest-parser = "0.3.0" json-pest-parser = "0.3.0"
serde = { version = "1.0.*", features = ["derive"] } serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*" serde_json = "1.0.*"
......
[package] [package]
name = "dubp-common" name = "dubp-common"
version = "0.44.0" version = "0.44.1"
authors = ["elois <elois@duniter.org>"] authors = ["elois <elois@duniter.org>"]
description = "Provide common tools and types for DUBP." description = "Provide common tools and types for DUBP."
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
...@@ -13,7 +13,7 @@ edition = "2018" ...@@ -13,7 +13,7 @@ edition = "2018"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
dup-crypto = { path = "../crypto", default-features = false, version = "0.44.0" } dup-crypto = { path = "../crypto", default-features = false, version = "0.44.1" }
serde = { version = "1.0.105", features = ["derive"] } serde = { version = "1.0.105", features = ["derive"] }
serde_json = "1.0.57" serde_json = "1.0.57"
thiserror = "1.0.20" thiserror = "1.0.20"
......
[package] [package]
name = "dup-crypto" name = "dup-crypto"
version = "0.44.0" version = "0.44.1"
authors = ["elois <c@elo.tf>"] authors = ["elois <c@elo.tf>"]
description = "Manage cryptographic operations for DUniter Protocols and the Duniter eco-system most broadly." description = "Manage cryptographic operations for DUniter Protocols and the Duniter eco-system most broadly."
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
......
[package] [package]
name = "dubp-documents-parser" name = "dubp-documents-parser"
version = "0.44.0" version = "0.44.1"
authors = ["elois <elois@duniter.org>"] authors = ["elois <elois@duniter.org>"]
description = "Parser for DUBP documents." description = "Parser for DUBP documents."
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
...@@ -13,7 +13,7 @@ edition = "2018" ...@@ -13,7 +13,7 @@ edition = "2018"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
dubp-documents = { path = "../documents", default-features = false, version = "0.44.0" } dubp-documents = { path = "../documents", default-features = false, version = "0.44.1" }
json-pest-parser = "0.3.0" json-pest-parser = "0.3.0"
pest = "2.1.3" pest = "2.1.3"
pest_derive = "2.1.0" pest_derive = "2.1.0"
......
[package] [package]
name = "dubp-documents" name = "dubp-documents"
version = "0.44.0" version = "0.44.1"
authors = ["elois <elois@duniter.org>"] authors = ["elois <elois@duniter.org>"]
description = "Handles DUBP documents (DUBP: DUniter Blockhain Protocol)" description = "Handles DUBP documents (DUBP: DUniter Blockhain Protocol)"
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
...@@ -14,7 +14,7 @@ path = "src/lib.rs" ...@@ -14,7 +14,7 @@ path = "src/lib.rs"
[dependencies] [dependencies]
beef = "0.5.0" beef = "0.5.0"
dubp-wallet = { path = "../wallet", default-features = false, version = "0.44.0" } dubp-wallet = { path = "../wallet", default-features = false, version = "0.44.1" }
log = "0.4.*" log = "0.4.*"
serde = { version = "1.0.*", features = ["derive"] } serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*" serde_json = "1.0.*"
......
[package] [package]
name = "dubp-wallet" name = "dubp-wallet"
version = "0.44.0" version = "0.44.1"
authors = ["elois <elois@duniter.org>"] authors = ["elois <elois@duniter.org>"]
description = "Provide wallet definition for DUBP protocol" description = "Provide wallet definition for DUBP protocol"
repository = "https://git.duniter.org/libs/dubp-rs-libs" repository = "https://git.duniter.org/libs/dubp-rs-libs"
...@@ -14,7 +14,7 @@ path = "src/lib.rs" ...@@ -14,7 +14,7 @@ path = "src/lib.rs"
[dependencies] [dependencies]
byteorder = "1.3.4" byteorder = "1.3.4"
dubp-common = { path = "../common", default-features = false, version = "0.44.0" } dubp-common = { path = "../common", default-features = false, version = "0.44.1" }
serde = { version = "1.0.*", features = ["derive"] } serde = { version = "1.0.*", features = ["derive"] }
smallvec = { version = "1.6.1", features = ["serde"] } smallvec = { version = "1.6.1", features = ["serde"] }
thiserror = "1.0.20" thiserror = "1.0.20"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment