diff --git a/README.md b/README.md index fe297ef..d5db46e 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,6 @@ Steps to mitigate the risks: - Use proper encryption --- `SeedStore` helps here -## TODO - -- version 1.0, with format guarantee -- (later) breaking challenge bounty - - ## Usage -- Example usage of the code Reading secret from file: diff --git a/secretstore/Cargo.toml b/secretstore/Cargo.toml index 770cc29..59aa339 100644 --- a/secretstore/Cargo.toml +++ b/secretstore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secretstore" -version = "0.9.3" +version = "1.0.0" description = "Store a secret (such as a private key) in an encrypted file" license = "MIT" edition = "2021" diff --git a/seedstore-tool/Cargo.toml b/seedstore-tool/Cargo.toml index 82868d6..75bf39b 100644 --- a/seedstore-tool/Cargo.toml +++ b/seedstore-tool/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "seedstore-tool" -version = "0.9.3" +version = "1.0.0" edition = "2021" [dependencies] bip39 = "2.1.0" -seedstore = { version = "0.9.3", path = "../seedstore", features = ["toolhelper"] } +seedstore = { version = "1.0.0", path = "../seedstore", features = ["toolhelper"] } diff --git a/seedstore/Cargo.toml b/seedstore/Cargo.toml index 111512b..c02ca31 100644 --- a/seedstore/Cargo.toml +++ b/seedstore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seedstore" -version = "0.9.3" +version = "1.0.0" description = "Store bitcoin secret material (BIP39 mnemonic entropy, or similar) in an encrypted file" license = "MIT" edition = "2021" @@ -16,7 +16,7 @@ toolhelper = ["rpassword"] bip39 = { version = "2.1.0", features = ["zeroize"] } bitcoin = "0.32.5" rpassword = { version = "7.4.0", optional = true } -secretstore = { version = "0.9.3", path = "../secretstore" } +secretstore = { version = "1.0.0", path = "../secretstore" } zeroize = "1.8.1" [dev-dependencies]