Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ repository = "https://github.com/OpenZeppelin/stellar-contracts"
documentation = "https://docs.openzeppelin.com/stellar-contracts/"
keywords = ["stellar", "soroban", "smart-contracts", "standards"]
categories = ["no-std", "wasm"]
version = "0.5.1"
version = "0.6.0"

[workspace.dependencies]
soroban-sdk = "23.4.0"
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ OpenZeppelin Stellar Soroban Contracts is a collection of contracts for the Stel
- [`access/`](packages/access): Role-based access controls and ownable
- [`accounts/`](packages/accounts): Smart accounts with custom authentication and authorization
- [`contract-utils/`](packages/contract-utils): Utilities for contracts (pausable, upgradeable, cryptography, etc.)
- [`fee-abstraction/`](packages/fee-abstraction): Utilities for covering transaction fees with fungible tokens instead of XLM
- [`governance/`](packages/governance): Governance utilities such as timelock
- [`macros/`](packages/macros): Proc and derive macros for some of the modules (`#[only_owner]`, `#[when_not_paused]`, `#[derive(Upgradeable)]`, etc.)
- [`test-utils/`](packages/test-utils): Utilities for testing
- [`tokens/`](packages/tokens): Various token types (fungible, non-fungible, real-world assets, vaults)
Expand Down Expand Up @@ -54,9 +56,9 @@ We recommend pinning to a specific version, because rapid iterations are expecte

```toml
[dependencies]
stellar-tokens = "=0.5.1"
stellar-access = "=0.5.1"
stellar-contract-utils = "=0.5.1"
stellar-tokens = "=0.6.0"
stellar-access = "=0.6.0"
stellar-contract-utils = "=0.6.0"
```

## Notes
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/access/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
stellar-access = "=0.5.1"
stellar-access = "=0.6.0"
# Add this if you want to use macros
stellar-macros = "=0.5.1"
stellar-macros = "=0.6.0"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion packages/accounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
stellar-accounts = "=0.5.1"
stellar-accounts = "=0.6.0"
```

### 2. Implement the Smart Account Trait
Expand Down
4 changes: 2 additions & 2 deletions packages/contract-utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
stellar-contract-utils = "=0.5.1"
stellar-contract-utils = "=0.6.0"
# Add this if you want to use macros
stellar-macros = "=0.5.1"
stellar-macros = "=0.6.0"
```

## Examples
Expand Down
Loading
Loading