Skip to content

Commit

Permalink
Bump 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maackle committed Sep 20, 2024
1 parent b42fc3d commit 9f306ef
Show file tree
Hide file tree
Showing 13 changed files with 52 additions and 49 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.2

- enables some basic tracing [#135](https://github.com/holochain/lair/pull/135)

## 0.5.1

- fix to build.rs to not check sql formatting unless environment variable CHK_SQL_FMT=1
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ dunce = "1.0.4"
futures = "0.3.28"
# this doesn't strictly need to be pinned, but it supports the
# determinism of the strict client/server version checks
hc_seed_bundle = { version = "=0.2.4", path = "./crates/hc_seed_bundle" }
hc_seed_bundle = { version = "=0.2.5", path = "./crates/hc_seed_bundle" }
# lair_keystore_api must be pinned to enable strict version checks
lair_keystore_api = { version = "=0.5.1", path = "./crates/lair_keystore_api" }
lair_keystore_api = { version = "=0.5.2", path = "./crates/lair_keystore_api" }
lru = "0.12.3"
nanoid = "0.4.0"
one_err = "0.0.8"
once_cell = "1.17.1"
parking_lot = "0.12.1"
pretty_assertions = "1.3.0"
rcgen = { version = "0.10.0", features = [ "zeroize" ] }
rcgen = { version = "0.10.0", features = ["zeroize"] }
rmp-serde = "1.3.0"
rmpv = { version = "1.3.0", features = [ "with-serde" ] }
rmpv = { version = "1.3.0", features = ["with-serde"] }
rpassword = "7.2.0"
rusqlite = { version = "0.32.1", features = [ "modern_sqlite" ] }
serde = { version = "1", features = [ "derive", "rc" ] }
rusqlite = { version = "0.32.1", features = ["modern_sqlite"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_bytes = "0.11.9"
serde_json = "1"
serde_yaml = "0.9.21"
Expand All @@ -41,8 +41,8 @@ time = "0.3.36"
tokio = { version = "1.35.1" }
toml = "0.8.14"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = [ "env-filter" ] }
url = { version = "2.3.1", features = [ "serde" ] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = { version = "2.3.1", features = ["serde"] }
winapi = { version = "0.3.9", features = ["winerror"] }
zeroize = "1.6.0"

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ License: MIT OR Apache-2.0

### `lair-keystore --help`
```text
lair_keystore 0.5.1
lair_keystore 0.5.2
secret lair private keystore
USAGE:
Expand Down Expand Up @@ -73,7 +73,7 @@ SUBCOMMANDS:
```
### `lair-keystore init --help`
```text
lair-keystore-init 0.5.1
lair-keystore-init 0.5.2
Set up a new lair private keystore.
USAGE:
Expand All @@ -91,7 +91,7 @@ FLAGS:
```
### `lair-keystore url --help`
```text
lair-keystore-url 0.5.1
lair-keystore-url 0.5.2
Print the connection_url for a configured lair-keystore
server to stdout and exit.
Expand All @@ -105,7 +105,7 @@ FLAGS:
```
### `lair-keystore import-seed --help`
```text
lair-keystore-import-seed 0.5.1
lair-keystore-import-seed 0.5.2
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.
Expand Down Expand Up @@ -142,7 +142,7 @@ ARGS:
```
### `lair-keystore server --help`
```text
lair-keystore-server 0.5.1
lair-keystore-server 0.5.2
Run a lair keystore server instance. Note you must
have initialized a config file first with
'lair-keystore init'.
Expand Down
13 changes: 6 additions & 7 deletions crates/hc_seed_bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
[package]
name = "hc_seed_bundle"
version = "0.2.4"
version = "0.2.5"
description = "SeedBundle parsing and generation library."
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/lair"
documentation = "https://docs.rs/hc_seed_bundle"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
keywords = [ "holochain", "holo", "keystore", "secret", "cryptography" ]
categories = [ "cryptography" ]
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
keywords = ["holochain", "holo", "keystore", "secret", "cryptography"]
categories = ["cryptography"]
edition = "2018"

[dependencies]
futures = { workspace = true }
one_err = { workspace = true }
rmp-serde = { workspace = true }
rmpv = { workspace = true } # Version 1.0.1 requires Rust 1.70.0
rmpv = { workspace = true } # Version 1.0.1 requires Rust 1.70.0
serde = { workspace = true }
serde_bytes = { workspace = true }
sodoken = { workspace = true }

[dev-dependencies]
base64 = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = [ "full" ] }

tokio = { workspace = true, features = ["full"] }
21 changes: 11 additions & 10 deletions crates/lair_keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
[package]
name = "lair_keystore"
version = "0.5.1"
version = "0.5.2"
description = "secret lair private keystore"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/lair"
documentation = "https://docs.rs/lair_keystore"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
keywords = [ "holochain", "holo", "keystore", "secret", "cryptography" ]
categories = [ "cryptography" ]
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
keywords = ["holochain", "holo", "keystore", "secret", "cryptography"]
categories = ["cryptography"]
edition = "2018"

[features]
default = [ "rusqlite-bundled-sqlcipher-vendored-openssl" ]
rusqlite-bundled = [ "rusqlite/bundled" ]
rusqlite-bundled-sqlcipher = [ "rusqlite/bundled-sqlcipher" ]
rusqlite-bundled-sqlcipher-vendored-openssl = [ "rusqlite/bundled-sqlcipher-vendored-openssl" ]
rusqlite-sqlcipher = [ "rusqlite/sqlcipher" ]
default = ["rusqlite-bundled-sqlcipher-vendored-openssl"]
rusqlite-bundled = ["rusqlite/bundled"]
rusqlite-bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]
rusqlite-bundled-sqlcipher-vendored-openssl = [
"rusqlite/bundled-sqlcipher-vendored-openssl",
]
rusqlite-sqlcipher = ["rusqlite/sqlcipher"]

[dependencies]
# lair_keystore_api must be pinned to enable strict version checks
Expand Down Expand Up @@ -43,4 +45,3 @@ path = "src/lib.rs"
name = "lair-keystore"
path = "src/bin/lair-keystore-bin/main.rs"
doc = false

10 changes: 5 additions & 5 deletions crates/lair_keystore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ License: MIT OR Apache-2.0

### `lair-keystore --help`
```text
lair_keystore 0.5.1
lair_keystore 0.5.2
secret lair private keystore
USAGE:
Expand Down Expand Up @@ -73,7 +73,7 @@ SUBCOMMANDS:
```
### `lair-keystore init --help`
```text
lair-keystore-init 0.5.1
lair-keystore-init 0.5.2
Set up a new lair private keystore.
USAGE:
Expand All @@ -91,7 +91,7 @@ FLAGS:
```
### `lair-keystore url --help`
```text
lair-keystore-url 0.5.1
lair-keystore-url 0.5.2
Print the connection_url for a configured lair-keystore
server to stdout and exit.
Expand All @@ -105,7 +105,7 @@ FLAGS:
```
### `lair-keystore import-seed --help`
```text
lair-keystore-import-seed 0.5.1
lair-keystore-import-seed 0.5.2
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.
Expand Down Expand Up @@ -142,7 +142,7 @@ ARGS:
```
### `lair-keystore server --help`
```text
lair-keystore-server 0.5.1
lair-keystore-server 0.5.2
Run a lair keystore server instance. Note you must
have initialized a config file first with
'lair-keystore init'.
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/docs/help.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### `lair-keystore --help`
```text
lair_keystore 0.5.1
lair_keystore 0.5.2
secret lair private keystore
USAGE:
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/docs/import-seed-help.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### `lair-keystore import-seed --help`
```text
lair-keystore-import-seed 0.5.1
lair-keystore-import-seed 0.5.2
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.
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/docs/init-help.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### `lair-keystore init --help`
```text
lair-keystore-init 0.5.1
lair-keystore-init 0.5.2
Set up a new lair private keystore.
USAGE:
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/docs/server-help.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### `lair-keystore server --help`
```text
lair-keystore-server 0.5.1
lair-keystore-server 0.5.2
Run a lair keystore server instance. Note you must
have initialized a config file first with
'lair-keystore init'.
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/docs/url-help.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### `lair-keystore url --help`
```text
lair-keystore-url 0.5.1
lair-keystore-url 0.5.2
Print the connection_url for a configured lair-keystore
server to stdout and exit.
Expand Down
11 changes: 5 additions & 6 deletions crates/lair_keystore_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "lair_keystore_api"
version = "0.5.1"
version = "0.5.2"
description = "secret lair private keystore API library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/lair"
documentation = "https://docs.rs/lair_keystore_api"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
keywords = [ "holochain", "holo", "keystore", "secret", "cryptography" ]
categories = [ "cryptography" ]
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
keywords = ["holochain", "holo", "keystore", "secret", "cryptography"]
categories = ["cryptography"]
edition = "2018"

[dependencies]
Expand All @@ -23,7 +23,7 @@ time = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tokio = { workspace = true, features = [ "full" ] }
tokio = { workspace = true, features = ["full"] }
toml = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
Expand All @@ -39,4 +39,3 @@ tracing-subscriber = { workspace = true }

[build-dependencies]
toml = { workspace = true }

0 comments on commit 9f306ef

Please sign in to comment.