Skip to content

Commit

Permalink
didkit v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clehner committed Mar 4, 2022
1 parent 38165e8 commit dd33f8d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2022-03-03
### Added
- DID Resolution function added to didkit-node ([#237](https://github.com/spruceid/didkit/pull/237)).
- Add key generation subcommands: `didkit key generate ...` ([#259](https://github.com/spruceid/didkit/pull/259)).
Expand Down Expand Up @@ -144,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[wasm-pack]: https://rustwasm.github.io/wasm-pack/
[zcap-ld]: https://w3c-ccg.github.io/zcap-ld/

[Unreleased]: https://github.com/spruceid/didkit/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/spruceid/didkit/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/spruceid/didkit/releases/tag/v0.4.0
[0.3.0]: https://github.com/spruceid/didkit/releases/tag/v0.3.0
[0.2.1]: https://github.com/spruceid/didkit/releases/tag/v0.2.1
[0.2.0]: https://github.com/spruceid/didkit/releases/tag/v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ring = ["ssi/ring"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
didkit = { version = "0.3", path = "../lib", features = ["http-did"] }
didkit = { version = "0.4", path = "../lib", features = ["http-did"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "3.0", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ default = ["ring"]
ring = ["ssi/ring"]

[dependencies]
didkit = { version = "0.3", path = "../lib", features = ["http-did"] }
didkit = { version = "0.4", path = "../lib", features = ["http-did"] }
didkit-cli = { version = "^0.1.1", path = "../cli" }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
clap = { version = "3.0", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "didkit"
version = "0.3.0"
version = "0.4.0"
authors = ["Spruce Systems, Inc."]
edition = "2018"
description = "Library for Verifiable Credentials and Decentralized Identifiers."
Expand Down
2 changes: 1 addition & 1 deletion lib/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ version = "0.4"
path = "../../../ssi"

[dependencies.didkit]
version = "0.3"
version = "0.4"
default-features = false
path = "../"

Expand Down

0 comments on commit dd33f8d

Please sign in to comment.