Skip to content

Commit 1500735

Browse files
authored
build: bump v0.1.1 (#382)
Resolves #381
1 parent dad1921 commit 1500735

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
-
2121

22-
## [0.1.1] - 2024-10-
22+
## [0.1.1] - 2024-10-28
2323

2424
### Changed
2525

26-
- Mini alloc is now used by default via the stylus-sdk. This avoids conflicts with duplicate #[global_allocator] definitions. #373
26+
- Mini alloc is now used by default via the stylus-sdk. This avoids conflicts with duplicate `#[global_allocator]` definitions. #373
2727
- Removed the panic handler from the library, making it easier for `std` and `no_std` projects to use the library. #373
2828

2929
## [0.1.0] - 2024-10-17

Cargo.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ edition = "2021"
5050
license = "MIT"
5151
keywords = ["arbitrum", "ethereum", "stylus"]
5252
repository = "https://github.com/OpenZeppelin/rust-contracts-stylus"
53-
version = "0.1.0"
53+
version = "0.1.1"
5454

5555
[workspace.lints.rust]
5656
missing_docs = "warn"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ line to your `Cargo.toml` (We recommend pinning to a specific version):
2323

2424
```toml
2525
[dependencies]
26-
openzeppelin-stylus = "0.1.0"
26+
openzeppelin-stylus = "0.1.1"
2727
```
2828

2929
Optionally, you can specify a git dependency if you want to have the latest
@@ -35,7 +35,7 @@ openzeppelin-stylus = { git = "https://github.com/OpenZeppelin/rust-contracts-st
3535
```
3636

3737
> [!NOTE]
38-
> This library is designed to be `no_std`, which helps reduce wasm size. If you want your project to be `no_std` as well, ensure that your dependencies are not importing the standard library.
38+
> This library is designed to be `no_std`, which helps reduce wasm size. If you want your project to be `no_std` as well, ensure that your dependencies are not importing the standard library.
3939
>You can achieve this by setting `default-features = false` for relevant dependencies in your `Cargo.toml`. For example:
4040
>
4141
> ```toml

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# the size limit (issue <https://github.com/OpenZeppelin/rust-contracts-stylus/issues/129>).
44
channel = "nightly-2024-09-05"
55
components = ["rust-src"]
6-
targets = ["wasm32-unknown-unknown"]
6+
targets = ["wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)