Skip to content

Commit 372a162

Browse files
authored
version bump (#486)
1 parent 5451a16 commit 372a162

File tree

8 files changed

+43
-43
lines changed

8 files changed

+43
-43
lines changed

Cargo.lock

Lines changed: 29 additions & 29 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
@@ -37,7 +37,7 @@ repository = "https://github.com/OpenZeppelin/stellar-contracts"
3737
documentation = "https://docs.openzeppelin.com/stellar-contracts/"
3838
keywords = ["stellar", "soroban", "smart-contracts", "standards"]
3939
categories = ["no-std", "wasm"]
40-
version = "0.5.0"
40+
version = "0.5.1"
4141

4242
[workspace.dependencies]
4343
soroban-sdk = "23.0.2"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ We recommend pinning to a specific version, because rapid iterations are expecte
5454

5555
```toml
5656
[dependencies]
57-
stellar-tokens = "=0.5.0"
58-
stellar-access = "=0.5.0"
59-
stellar-contract-utils = "=0.5.0"
57+
stellar-tokens = "=0.5.1"
58+
stellar-access = "=0.5.1"
59+
stellar-contract-utils = "=0.5.1"
6060
```
6161

6262
## Notes

packages/access/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ Add this to your `Cargo.toml`:
137137
```toml
138138
[dependencies]
139139
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
140-
stellar-access = "=0.5.0"
140+
stellar-access = "=0.5.1"
141141
# Add this if you want to use macros
142-
stellar-macros = "=0.5.0"
142+
stellar-macros = "=0.5.1"
143143
```
144144

145145
## Examples

packages/accounts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Policies follow a well-defined lifecycle that integrates with context rule manag
132132

133133
**Enforcement** is triggered when a context rule successfully matches. Once all policies in the matched rule pass their `can_enforce()` checks, the smart account calls `enforce()` on each policy. This state-changing hook allows policies to update counters, emit events, record timestamps, or perform other mutations that track authorization activity. For example, a spending limit policy might deduct from the available balance and emit an event documenting the transaction.
134134

135-
**Uninstallation** occurs when a context rule is removed from the smart account. The account calls `uninstall()` on each attached policy, allowing them to clean up any stored data associated with that specific account and context rule pairing. This ensures that policies do not leave orphaned state in storage.
135+
**Uninstallation** occurs when a context rule is removed from the smart account. The account calls `uninstall()` on each attached policy, allowing them to clean up any stored data associated with that specific account and context rule pairing. This ensures that policies do not leave orphaned state in storage.
136136

137137
#### Policy Examples
138138

@@ -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.0"
291+
stellar-accounts = "=0.5.1"
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
@@ -133,9 +133,9 @@ Add this to your `Cargo.toml`:
133133
```toml
134134
[dependencies]
135135
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
136-
stellar-contract-utils = "=0.5.0"
136+
stellar-contract-utils = "=0.5.1"
137137
# Add this if you want to use macros
138-
stellar-macros = "=0.5.0"
138+
stellar-macros = "=0.5.1"
139139
```
140140

141141
## Examples

packages/macros/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub struct MyContract;
2222
#[contractimpl]
2323
impl FungibleToken for MyContract {
2424
type ContractType = Base;
25-
25+
2626
// Only provide overrides here, default implementations are auto-generated
2727
}
2828
```
@@ -167,7 +167,7 @@ Add this to your `Cargo.toml`:
167167
```toml
168168
[dependencies]
169169
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
170-
stellar-macros = "=0.5.0"
170+
stellar-macros = "=0.5.1"
171171
```
172172

173173
## Examples

packages/tokens/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ Add this to your `Cargo.toml`:
135135
```toml
136136
[dependencies]
137137
# We recommend pinning to a specific version, because rapid iterations are expected as the library is in an active development phase.
138-
stellar-tokens = "=0.5.0"
138+
stellar-tokens = "=0.5.1"
139139
# Add this if you want to use macros
140-
stellar-macros = "=0.5.0"
140+
stellar-macros = "=0.5.1"
141141
```
142142

143143
## Examples

0 commit comments

Comments
 (0)