Skip to content

Commit 82f9711

Browse files
ozgunozerkbrozorec
andauthored
release prep for v0.6.0 (#548)
* release prep * add readme in governance * add new packages to readme --------- Co-authored-by: brozorec <[email protected]>
1 parent b75a2e5 commit 82f9711

File tree

10 files changed

+149
-45
lines changed

10 files changed

+149
-45
lines changed

Cargo.lock

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repository = "https://github.com/OpenZeppelin/stellar-contracts"
4242
documentation = "https://docs.openzeppelin.com/stellar-contracts/"
4343
keywords = ["stellar", "soroban", "smart-contracts", "standards"]
4444
categories = ["no-std", "wasm"]
45-
version = "0.5.1"
45+
version = "0.6.0"
4646

4747
[workspace.dependencies]
4848
soroban-sdk = "23.4.0"

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ OpenZeppelin Stellar Soroban Contracts is a collection of contracts for the Stel
1717
- [`access/`](packages/access): Role-based access controls and ownable
1818
- [`accounts/`](packages/accounts): Smart accounts with custom authentication and authorization
1919
- [`contract-utils/`](packages/contract-utils): Utilities for contracts (pausable, upgradeable, cryptography, etc.)
20+
- [`fee-abstraction/`](packages/fee-abstraction): Utilities for covering transaction fees with fungible tokens instead of XLM
21+
- [`governance/`](packages/governance): Governance utilities such as timelock
2022
- [`macros/`](packages/macros): Proc and derive macros for some of the modules (`#[only_owner]`, `#[when_not_paused]`, `#[derive(Upgradeable)]`, etc.)
2123
- [`test-utils/`](packages/test-utils): Utilities for testing
2224
- [`tokens/`](packages/tokens): Various token types (fungible, non-fungible, real-world assets, vaults)
@@ -54,9 +56,9 @@ We recommend pinning to a specific version, because rapid iterations are expecte
5456

5557
```toml
5658
[dependencies]
57-
stellar-tokens = "=0.5.1"
58-
stellar-access = "=0.5.1"
59-
stellar-contract-utils = "=0.5.1"
59+
stellar-tokens = "=0.6.0"
60+
stellar-access = "=0.6.0"
61+
stellar-contract-utils = "=0.6.0"
6062
```
6163

6264
## Notes
215 KB
Binary file not shown.

packages/access/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ Add this to your `Cargo.toml`:
145145
```toml
146146
[dependencies]
147147
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
148-
stellar-access = "=0.5.1"
148+
stellar-access = "=0.6.0"
149149
# Add this if you want to use macros
150-
stellar-macros = "=0.5.1"
150+
stellar-macros = "=0.6.0"
151151
```
152152

153153
## Examples

packages/accounts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Add this to your `Cargo.toml`:
288288
```toml
289289
[dependencies]
290290
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
291-
stellar-accounts = "=0.5.1"
291+
stellar-accounts = "=0.6.0"
292292
```
293293

294294
### 2. Implement the Smart Account Trait

packages/contract-utils/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ Add this to your `Cargo.toml`:
142142
```toml
143143
[dependencies]
144144
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
145-
stellar-contract-utils = "=0.5.1"
145+
stellar-contract-utils = "=0.6.0"
146146
# Add this if you want to use macros
147-
stellar-macros = "=0.5.1"
147+
stellar-macros = "=0.6.0"
148148
```
149149

150150
## Examples

0 commit comments

Comments
 (0)