Skip to content

Commit

Permalink
Merge pull request #28 from bennyhodl/release-plz-2025-01-13T16-06-33Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
bennyhodl authored Jan 17, 2025
2 parents 971ca35 + 63c9c78 commit de90b3f
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 9 deletions.
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.

11 changes: 11 additions & 0 deletions kormir-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.4](https://github.com/bennyhodl/kormir/compare/kormir-server-v0.3.3...kormir-server-v0.3.4) - 2025-01-17

### Added

- implement hmac authentication for create-* and sign-* endpoints

### Other

- return pubkey struct
- return the oracle info struct in kormir-server

## [0.3.1](https://github.com/bennyhodl/kormir/compare/kormir-server-v0.3.0...kormir-server-v0.3.1) - 2024-11-27

### Other
Expand Down
6 changes: 3 additions & 3 deletions kormir-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kormir-server"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
authors = ["benthecarman <[email protected]>", "benny b <[email protected]>"]
description = "DLC Oracle RPC Server"
Expand All @@ -10,7 +10,7 @@ homepage = "https://github.com/bennyhodl/kormir"
repository = "https://github.com/bennyhodl/kormir"

[dependencies]
kormir = { path = "../kormir", version = "0.4.0", features = ["nostr"] }
kormir = { path = "../kormir", version = "0.4.2", features = ["nostr"] }

anyhow = "1.0"
axum = "0.7.9"
Expand All @@ -35,4 +35,4 @@ serde_json = "1.0.67"
tokio = { version = "1.12.0", features = ["full"] }
hex = "0.4.3"
hmac = "0.12.1" # HMAC implementation
sha2 = "0.10" # SHA2 hash function (commonly used with HMAC)
sha2 = "0.10" # SHA2 hash function (commonly used with HMAC)
6 changes: 6 additions & 0 deletions kormir-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.4](https://github.com/bennyhodl/kormir/compare/kormir-wasm-v0.3.3...kormir-wasm-v0.3.4) - 2025-01-17

### Other

- return the oracle info struct in kormir-server

## [0.3.1](https://github.com/bennyhodl/kormir/compare/kormir-wasm-v0.3.0...kormir-wasm-v0.3.1) - 2024-11-27

### Other
Expand Down
4 changes: 2 additions & 2 deletions kormir-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kormir-wasm"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
authors = ["benthecarman <[email protected]>"]
description = "DLC Oracle WASM SDK"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/bennyhodl/kormir"
crate-type = ["cdylib", "rlib"]

[dependencies]
kormir = { path = "../kormir", version = "0.4.0", features = ["nostr"] }
kormir = { path = "../kormir", version = "0.4.2", features = ["nostr"] }

anyhow = "1.0.75"
bip39 = "2.0.0"
Expand Down
6 changes: 6 additions & 0 deletions kormir/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/bennyhodl/kormir/compare/kormir-v0.4.1...kormir-v0.4.2) - 2025-01-17

### Other

- return the oracle info struct in kormir-server

## [0.3.2](https://github.com/bennyhodl/kormir/compare/kormir-v0.3.1...kormir-v0.3.2) - 2024-11-27

### Other
Expand Down
2 changes: 1 addition & 1 deletion kormir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kormir"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["benthecarman <[email protected]>", "benny b <[email protected]>"]
description = "Oracle implementation for DLCs"
Expand Down

0 comments on commit de90b3f

Please sign in to comment.