Skip to content

Commit

Permalink
Merge pull request #226 from dusk-network/release
Browse files Browse the repository at this point in the history
Release core 0.30.0-rc.0 and circuits 0.2.1-rc.0
  • Loading branch information
moCello authored Jun 27, 2024
2 parents b462dd3 + f1a5e49 commit ab1c340
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions circuits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Make `TxInputNote` fields public

## [0.2.0] - 2024-06-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions circuits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoenix-circuits"
version = "0.2.0"
version = "0.2.1-rc.0"
edition = "2021"
repository = "https://github.com/dusk-network/phoenix/circuits"
description = "Circuit definitions for Phoenix, a privacy-preserving ZKP-based transaction model"
Expand All @@ -10,7 +10,7 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
phoenix-core = { version = "0.29.0-rc", default-features = false, path = "../core" }
phoenix-core = { version = "0.30.0-rc", default-features = false, path = "../core" }
dusk-plonk = { version = "0.19", default-features = false }
dusk-jubjub = { version = "0.14", default-features = false }
poseidon-merkle = { version = "0.6", features = ["rkyv-impl", "zk", "size_32"] }
Expand Down
10 changes: 8 additions & 2 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Add `Sender` struct [#222]

### Changed

- Let `owns` take a `StealthAddress` instead of a `Note`

## [0.29.0] - 2024-06-19

### Added

- Add `Sender` struct [#222]
- Add `encrypt_sender` function to encrypt the sender with the npk [#214]
- Add `decrypt_sender` method to the `Note` [#214]
- Add `elgamal::encrypt` and `elgamal::decrypt`
Expand All @@ -22,7 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Let `owns` take a `StealthAddress` instead of a `Note`
- Rename `tx_max_fee` to `max_fee` [#214]
- Add `sender_enc` field to the `Note` [#214]
- Add `sender_blinder` parameter for `Note` contructors [#214]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoenix-core"
version = "0.29.0"
version = "0.30.0-rc.0"
edition = "2021"
repository = "https://github.com/dusk-network/phoenix/core"
description = "Core types and functionalities for Phoenix, a privacy-preserving ZKP-based transaction model"
Expand Down

0 comments on commit ab1c340

Please sign in to comment.