diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7176520fae17a688e5f5f47830d046de84ece77a..cebb2f8bbb45042ad8ba62742f4ddcdc74bed925 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased] - ReleaseDate
 
+## [0.44.1] - 2021-02-27
+
 ## [0.44.0] - 2021-02-27
 
 ## [0.43.2] - 2021-02-21
@@ -121,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 Initial version.
 
 <!-- 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.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
diff --git a/Cargo.lock b/Cargo.lock
index d0152ea2ac3f842afad10196854951ab1576e416..7576f82071d0d91e47b01d14ed960fbf905ec903 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -417,7 +417,7 @@ dependencies = [
 
 [[package]]
 name = "dubp"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "dubp-block",
  "dubp-common",
@@ -430,7 +430,7 @@ dependencies = [
 
 [[package]]
 name = "dubp-block"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "bincode",
  "dubp-documents",
@@ -446,7 +446,7 @@ dependencies = [
 
 [[package]]
 name = "dubp-common"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "bincode",
  "dup-crypto",
@@ -459,7 +459,7 @@ dependencies = [
 
 [[package]]
 name = "dubp-documents"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "beef",
  "dubp-wallet",
@@ -474,7 +474,7 @@ dependencies = [
 
 [[package]]
 name = "dubp-documents-parser"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "dubp-documents",
  "json-pest-parser",
@@ -487,7 +487,7 @@ dependencies = [
 
 [[package]]
 name = "dubp-wallet"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "byteorder",
  "dubp-common",
@@ -502,7 +502,7 @@ dependencies = [
 
 [[package]]
 name = "dup-crypto"
-version = "0.44.0"
+version = "0.44.1"
 dependencies = [
  "aes",
  "arrayvec",
diff --git a/Cargo.toml b/Cargo.toml
index d806628b68ee5a0243b6908a6462b296369c68cc..82d658501b4f96255ab372d0a0bf502ed4145362 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,18 +7,18 @@ license = "AGPL-3.0"
 name = "dubp"
 readme = "README.md"
 repository = "https://git.duniter.org/libs-dupb-rs-libs"
-version = "0.44.0"
+version = "0.44.1"
 
 [lib]
 path = "lib.rs"
 
 [dependencies]
-dup-crypto = { path = "crypto", default-features = false, version = "0.44.0", features = ["scrypt"] }
-dubp-common = { path = "common", version = "0.44.0", features = ["crypto_scrypt"] }
-dubp-wallet = { path = "wallet", version = "0.44.0", features = ["crypto_scrypt"] }
-dubp-documents = { path = "documents", version = "0.44.0", features = ["crypto_scrypt"] }
-dubp-documents-parser = { path = "documents-parser", version = "0.44.0", features = ["crypto_scrypt"] }
-dubp-block = { path = "block", version = "0.44.0", features = ["crypto_scrypt"] }
+dup-crypto = { path = "crypto", default-features = false, version = "0.44.1", features = ["scrypt"] }
+dubp-common = { path = "common", version = "0.44.1", features = ["crypto_scrypt"] }
+dubp-wallet = { path = "wallet", version = "0.44.1", features = ["crypto_scrypt"] }
+dubp-documents = { path = "documents", version = "0.44.1", features = ["crypto_scrypt"] }
+dubp-documents-parser = { path = "documents-parser", version = "0.44.1", features = ["crypto_scrypt"] }
+dubp-block = { path = "block", version = "0.44.1", features = ["crypto_scrypt"] }
 
 [features]
 default = ["crypto_assembly"]
diff --git a/block/Cargo.toml b/block/Cargo.toml
index 7a4b0adf2599e6a47f02f5ba0567ce586fe560e3..4be4fbb9f91716ca081a58209160c0b98fe80b79 100644
--- a/block/Cargo.toml
+++ b/block/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dubp-block"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <elois@duniter.org>"]
 description = "Handle DUBP block (DUBP: DUniter Blockhain Protocol)."
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
@@ -13,8 +13,8 @@ edition = "2018"
 path = "src/lib.rs"
 
 [dependencies]
-dubp-documents = { path = "../documents", default-features = false, version = "0.44.0" }
-dubp-documents-parser = { path = "../documents-parser", 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.1" }
 json-pest-parser = "0.3.0"
 serde = { version = "1.0.*", features = ["derive"] }
 serde_json = "1.0.*"
diff --git a/common/Cargo.toml b/common/Cargo.toml
index a159027dbfdb011b595af5028dde0a9e4f644458..08582bdd4fa44ad59b97e610dfc8e890c2689679 100644
--- a/common/Cargo.toml
+++ b/common/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dubp-common"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <elois@duniter.org>"]
 description = "Provide common tools and types for DUBP."
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
@@ -13,7 +13,7 @@ edition = "2018"
 path = "src/lib.rs"
 
 [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_json = "1.0.57"
 thiserror = "1.0.20"
diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml
index 8be0a691513e1e964c7c4efb751819959ef8516f..a0d622cfac4f0eb0a69d4ffad7cef68213648edd 100644
--- a/crypto/Cargo.toml
+++ b/crypto/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dup-crypto"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <c@elo.tf>"]
 description = "Manage cryptographic operations for DUniter Protocols and the Duniter eco-system most broadly."
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
diff --git a/documents-parser/Cargo.toml b/documents-parser/Cargo.toml
index 9c2db7d1af708a62a0d1ed48f7383436c235315d..9fc712a5bc9d8a76b6a13804e23e9cf5a4053a53 100644
--- a/documents-parser/Cargo.toml
+++ b/documents-parser/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dubp-documents-parser"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <elois@duniter.org>"]
 description = "Parser for DUBP documents."
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
@@ -13,7 +13,7 @@ edition = "2018"
 path = "src/lib.rs"
 
 [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"
 pest = "2.1.3"
 pest_derive = "2.1.0"
diff --git a/documents/Cargo.toml b/documents/Cargo.toml
index c8e665dd57e248efc582cf1ed2402917df8e70af..d7b9f6207a257dfead912e04bc1364deb4d2eaf5 100644
--- a/documents/Cargo.toml
+++ b/documents/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dubp-documents"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <elois@duniter.org>"]
 description = "Handles DUBP documents (DUBP: DUniter Blockhain Protocol)"
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
@@ -14,7 +14,7 @@ path = "src/lib.rs"
 
 [dependencies]
 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.*"
 serde = { version = "1.0.*", features = ["derive"] }
 serde_json = "1.0.*"
diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml
index 611c6e1193412486fc6c6f39d9ae99bd310313cc..766e8a87d2f3afd8b2a2907b5864afc6412ddadb 100644
--- a/wallet/Cargo.toml
+++ b/wallet/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dubp-wallet"
-version = "0.44.0"
+version = "0.44.1"
 authors = ["elois <elois@duniter.org>"]
 description = "Provide wallet definition for DUBP protocol"
 repository = "https://git.duniter.org/libs/dubp-rs-libs"
@@ -14,7 +14,7 @@ path = "src/lib.rs"
 
 [dependencies]
 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"] }
 smallvec = { version = "1.6.1", features = ["serde"] }
 thiserror = "1.0.20"