diff --git a/Cargo.lock b/Cargo.lock index d29358a..da92c20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -692,7 +692,7 @@ dependencies = [ [[package]] name = "lair_keystore" -version = "0.4.0" +version = "0.4.1" dependencies = [ "criterion", "lair_keystore_api", @@ -708,7 +708,7 @@ dependencies = [ [[package]] name = "lair_keystore_api" -version = "0.4.0" +version = "0.4.1" dependencies = [ "assert_cmd", "base64 0.13.1", diff --git a/README.md b/README.md index 723ff03..3ed8109 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ License: MIT OR Apache-2.0 ### `lair-keystore --help` ```text -lair_keystore 0.4.0 +lair_keystore 0.4.1 secret lair private keystore USAGE: @@ -74,7 +74,7 @@ SUBCOMMANDS: ``` ### `lair-keystore init --help` ```text -lair-keystore-init 0.4.0 +lair-keystore-init 0.4.1 Set up a new lair private keystore. USAGE: @@ -92,7 +92,7 @@ FLAGS: ``` ### `lair-keystore url --help` ```text -lair-keystore-url 0.4.0 +lair-keystore-url 0.4.1 Print the connection_url for a configured lair-keystore server to stdout and exit. @@ -106,7 +106,7 @@ FLAGS: ``` ### `lair-keystore import-seed --help` ```text -lair-keystore-import-seed 0.4.0 +lair-keystore-import-seed 0.4.1 Load a seed bundle into this lair-keystore instance. Note, this operation requires capturing the pid_file, make sure you do not have a lair-server running. @@ -143,7 +143,7 @@ ARGS: ``` ### `lair-keystore server --help` ```text -lair-keystore-server 0.4.0 +lair-keystore-server 0.4.1 Run a lair keystore server instance. Note you must have initialized a config file first with 'lair-keystore init'. diff --git a/crates/lair_keystore/Cargo.toml b/crates/lair_keystore/Cargo.toml index 26be0c6..24e494c 100644 --- a/crates/lair_keystore/Cargo.toml +++ b/crates/lair_keystore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lair_keystore" -version = "0.4.0" +version = "0.4.1" description = "secret lair private keystore" license = "MIT OR Apache-2.0" repository = "https://github.com/holochain/lair" @@ -19,7 +19,7 @@ rusqlite-sqlcipher = [ "rusqlite/sqlcipher" ] [dependencies] # lair_keystore_api must be pinned to enable strict version checks -lair_keystore_api = { version = "=0.4.0", path = "../lair_keystore_api" } +lair_keystore_api = { version = "=0.4.1", path = "../lair_keystore_api" } rpassword = "7.2.0" rusqlite = { version = "0.29", features = [ "modern_sqlite" ] } structopt = "0.3.26" @@ -27,7 +27,7 @@ sysinfo = "0.28.4" tracing-subscriber = { version = "0.3.17", features = [ "env-filter" ] } [build-dependencies] -lair_keystore_api = { version = "0.4.0", path = "../lair_keystore_api" } +lair_keystore_api = { version = "0.4.1", path = "../lair_keystore_api" } pretty_assertions = "1.3.0" sqlformat = "0.2.1" diff --git a/crates/lair_keystore/README.md b/crates/lair_keystore/README.md index 723ff03..3ed8109 100644 --- a/crates/lair_keystore/README.md +++ b/crates/lair_keystore/README.md @@ -43,7 +43,7 @@ License: MIT OR Apache-2.0 ### `lair-keystore --help` ```text -lair_keystore 0.4.0 +lair_keystore 0.4.1 secret lair private keystore USAGE: @@ -74,7 +74,7 @@ SUBCOMMANDS: ``` ### `lair-keystore init --help` ```text -lair-keystore-init 0.4.0 +lair-keystore-init 0.4.1 Set up a new lair private keystore. USAGE: @@ -92,7 +92,7 @@ FLAGS: ``` ### `lair-keystore url --help` ```text -lair-keystore-url 0.4.0 +lair-keystore-url 0.4.1 Print the connection_url for a configured lair-keystore server to stdout and exit. @@ -106,7 +106,7 @@ FLAGS: ``` ### `lair-keystore import-seed --help` ```text -lair-keystore-import-seed 0.4.0 +lair-keystore-import-seed 0.4.1 Load a seed bundle into this lair-keystore instance. Note, this operation requires capturing the pid_file, make sure you do not have a lair-server running. @@ -143,7 +143,7 @@ ARGS: ``` ### `lair-keystore server --help` ```text -lair-keystore-server 0.4.0 +lair-keystore-server 0.4.1 Run a lair keystore server instance. Note you must have initialized a config file first with 'lair-keystore init'. diff --git a/crates/lair_keystore/src/docs/help.md b/crates/lair_keystore/src/docs/help.md index 48a7e73..5b1b03f 100644 --- a/crates/lair_keystore/src/docs/help.md +++ b/crates/lair_keystore/src/docs/help.md @@ -1,6 +1,6 @@ ### `lair-keystore --help` ```text -lair_keystore 0.4.0 +lair_keystore 0.4.1 secret lair private keystore USAGE: diff --git a/crates/lair_keystore/src/docs/import-seed-help.md b/crates/lair_keystore/src/docs/import-seed-help.md index e3ffe30..329cfff 100644 --- a/crates/lair_keystore/src/docs/import-seed-help.md +++ b/crates/lair_keystore/src/docs/import-seed-help.md @@ -1,6 +1,6 @@ ### `lair-keystore import-seed --help` ```text -lair-keystore-import-seed 0.4.0 +lair-keystore-import-seed 0.4.1 Load a seed bundle into this lair-keystore instance. Note, this operation requires capturing the pid_file, make sure you do not have a lair-server running. diff --git a/crates/lair_keystore/src/docs/init-help.md b/crates/lair_keystore/src/docs/init-help.md index ababbc9..8f788b2 100644 --- a/crates/lair_keystore/src/docs/init-help.md +++ b/crates/lair_keystore/src/docs/init-help.md @@ -1,6 +1,6 @@ ### `lair-keystore init --help` ```text -lair-keystore-init 0.4.0 +lair-keystore-init 0.4.1 Set up a new lair private keystore. USAGE: diff --git a/crates/lair_keystore/src/docs/server-help.md b/crates/lair_keystore/src/docs/server-help.md index 2539ecb..b0c2d63 100644 --- a/crates/lair_keystore/src/docs/server-help.md +++ b/crates/lair_keystore/src/docs/server-help.md @@ -1,6 +1,6 @@ ### `lair-keystore server --help` ```text -lair-keystore-server 0.4.0 +lair-keystore-server 0.4.1 Run a lair keystore server instance. Note you must have initialized a config file first with 'lair-keystore init'. diff --git a/crates/lair_keystore/src/docs/url-help.md b/crates/lair_keystore/src/docs/url-help.md index 5828551..a44c831 100644 --- a/crates/lair_keystore/src/docs/url-help.md +++ b/crates/lair_keystore/src/docs/url-help.md @@ -1,6 +1,6 @@ ### `lair-keystore url --help` ```text -lair-keystore-url 0.4.0 +lair-keystore-url 0.4.1 Print the connection_url for a configured lair-keystore server to stdout and exit. diff --git a/crates/lair_keystore_api/Cargo.toml b/crates/lair_keystore_api/Cargo.toml index 54a7723..0a62e52 100644 --- a/crates/lair_keystore_api/Cargo.toml +++ b/crates/lair_keystore_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lair_keystore_api" -version = "0.4.0" +version = "0.4.1" description = "secret lair private keystore API library" license = "MIT OR Apache-2.0" repository = "https://github.com/holochain/lair"