Skip to content

Commit

Permalink
Bump block2 version 0.2.0 -> 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Jul 31, 2023
1 parent eeb7025 commit b431724
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

7 changes: 7 additions & 0 deletions crates/block2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased - YYYY-MM-DD


## 0.3.0 - 2023-07-31

### Fixed
* Bumped version number to ensure that this crate can be compiled together
with code that depends on pre-releases of `0.2.0`.


## 0.2.0 - 2023-06-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion crates/block2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "block2"
# Remember to update html_root_url in lib.rs and README.md
version = "0.2.0"
version = "0.3.0"
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand Down
2 changes: 1 addition & 1 deletion crates/block2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
#![warn(clippy::cargo)]
#![warn(clippy::ptr_as_ptr)]
// Update in Cargo.toml as well.
#![doc(html_root_url = "https://docs.rs/block2/0.2.0")]
#![doc(html_root_url = "https://docs.rs/block2/0.3.0")]

extern crate alloc;
extern crate std;
Expand Down
6 changes: 6 additions & 0 deletions crates/icrate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## icrate Unreleased - YYYY-MM-DD

### Changed
* **BREAKING**: Updated `block2` to `v0.3.0`.

### Fixed
* Documentation on docs.rs.


## icrate 0.0.3 - 2023-06-20

Expand Down
2 changes: 1 addition & 1 deletion crates/icrate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ license = "MIT"

[dependencies]
objc2 = { path = "../objc2", version = "0.4.1", default-features = false, optional = true }
block2 = { path = "../block2", version = "0.2.0", default-features = false, optional = true }
block2 = { path = "../block2", version = "0.3.0", default-features = false, optional = true }
dispatch = { version = "0.2.0", optional = true }

[dev-dependencies]
Expand Down

0 comments on commit b431724

Please sign in to comment.