Skip to content

Commit 1f8d419

Browse files
chore(release): bump version to 0.3.0-alpha.2 (OpenZeppelin#774)
Co-authored-by: oz-release-app-midnight[bot] <263459143+oz-release-app-midnight[bot]@users.noreply.github.com> Co-authored-by: andrew <fleming-andrew@protonmail.com>
1 parent 0e9d659 commit 1f8d419

37 files changed

Lines changed: 48 additions & 41 deletions

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10-
### Added
11-
12-
- Add Confidential Fungible Token (#653)
13-
- Add EcdhMask (#655)
10+
## 0.3.0-alpha.2 (2026-08-11)
1411

1512
### Changed
1613

1714
- Remove the initialization guard from `Signer`'s `assertSigner`, `assertThresholdMet`, `getSignerCount`, and `getThreshold` (#761)
1815
- Consolidate the duplicate multisig signer registries onto `Signer`, removing `SignerManager` (#760)
19-
- Rename the contract-compilation scripts and Turbo tasks from `compact` / `compact:*` to `compile` / `compile:*`, and the Biome scripts from `fmt-and-lint` / `fmt-and-lint:*` to `lint` / `lint:*`. (#680)
2016
- Rename the native shielded token supply extensions to `NativeShieldedTokenPublicSupply` / `NativeShieldedTokenFamilyPublicSupply` (and the shared `NativeShieldedTokenPublicSupplyCore`), making explicit that they track supply on-chain and matching the `ConfidentialFungibleTokenPublicSupply` naming. (#710)
2117

2218
### Fixed
2319

2420
- Guard `UnshieldedTreasury` on its tracked balance instead of the protocol balance, fixing a runtime failure that made deposits revert (#762)
2521

22+
## 0.3.0-alpha.1 (2026-07-21)
23+
24+
### Added
25+
26+
- Add Confidential Fungible Token (#653)
27+
- Add EcdhMask (#655)
28+
29+
### Changed
30+
31+
- Rename the contract-compilation scripts and Turbo tasks from `compact` / `compact:*` to `compile` / `compile:*`, and the Biome scripts from `fmt-and-lint` / `fmt-and-lint:*` to `lint` / `lint:*`. (#680)
32+
2633
## 0.3.0-alpha (2026-06-30)
2734

2835
### Added

contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openzeppelin/compact-contracts",
3-
"version": "0.3.0-alpha.1",
3+
"version": "0.3.0-alpha.2",
44
"description": "OpenZeppelin Compact contract library",
55
"keywords": [
66
"openzeppelin",

contracts/src/access/AccessControl.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (access/AccessControl.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (access/AccessControl.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/access/Ownable.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (access/Ownable.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (access/Ownable.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/access/ShieldedAccessControl.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (access/ShieldedAccessControl.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (access/ShieldedAccessControl.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/access/ZOwnablePK.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (access/ZOwnablePK.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (access/ZOwnablePK.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/archive/ShieldedToken.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (archive/ShieldedToken.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (archive/ShieldedToken.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/crypto/EcdhMask.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (crypto/EcdhMask.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (crypto/EcdhMask.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/crypto/ElGamal.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (crypto/ElGamal.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (crypto/ElGamal.compact)
33

44
pragma language_version >= 0.23.0;
55

contracts/src/multisig/ForwarderPrivate.compact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// OpenZeppelin Compact Contracts v0.3.0-alpha.1 (multisig/ForwarderPrivate.compact)
2+
// OpenZeppelin Compact Contracts v0.3.0-alpha.2 (multisig/ForwarderPrivate.compact)
33

44
pragma language_version >= 0.23.0;
55

0 commit comments

Comments
 (0)