Skip to content

Commit 75a1a08

Browse files
authored
Merge pull request #106 from madsmtm/new-versions
New versions
2 parents 9144d59 + fba688f commit 75a1a08

File tree

18 files changed

+62
-22
lines changed

18 files changed

+62
-22
lines changed

block-sys/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77
## Unreleased - YYYY-MM-DD
88

99

10+
## 0.0.3 - 2022-01-03
11+
12+
### Changed
13+
* **BREAKING**: Updated `objc-sys` to `v0.2.0-alpha.1`.
14+
15+
1016
## 0.0.2 - 2021-12-22
1117

18+
### Changed
19+
* **BREAKING**: Updated `objc-sys` to `v0.2.0-alpha.0`.
20+
1221
### Fixed
1322
* **BREAKING**: `Class` is now `!UnwindSafe`.
1423

block-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-sys"
3-
version = "0.0.2" # Remember to update html_root_url in lib.rs
3+
version = "0.0.3" # Remember to update html_root_url in lib.rs
44
authors = ["Mads Marquart <[email protected]>"]
55
edition = "2018"
66

@@ -47,7 +47,7 @@ winobjc = ["objc-sys/winobjc", "gnustep-1-8"]
4747
objfw = []
4848

4949
[dependencies]
50-
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.0", optional = true }
50+
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.1", optional = true }
5151

5252
[package.metadata.docs.rs]
5353
default-target = "x86_64-apple-darwin"

block-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! [ABI]: https://clang.llvm.org/docs/Block-ABI-Apple.html
1111
1212
// Update in Cargo.toml as well.
13-
#![doc(html_root_url = "https://docs.rs/block-sys/0.0.2")]
13+
#![doc(html_root_url = "https://docs.rs/block-sys/0.0.3")]
1414

1515
// Ensure linkage actually happens
1616
#[cfg(feature = "gnustep-1-7")]

block2/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## Unreleased - YYYY-MM-DD
88

9+
10+
## 0.2.0-alpha.3 - 2022-01-03
11+
912
### Changed
1013
* Changed `global_block!` macro to take an optional semicolon at the end.
1114
* Improved documentation.
15+
* **BREAKING**: Updated `ffi` module to `block-sys v0.0.3`
1216

1317

1418
## 0.2.0-alpha.2 - 2021-12-22
@@ -17,6 +21,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1721
* `GlobalBlock` and corresponding `global_block!` macro, allowing statically
1822
creating blocks that don't reference their environment.
1923

24+
### Changed
25+
* **BREAKING**: Updated `ffi` module to `block-sys v0.0.2`
26+
2027

2128
## 0.2.0-alpha.1 - 2021-11-22
2229

block2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "block2"
33
# Remember to update html_root_url in lib.rs and README.md
4-
version = "0.2.0-alpha.2"
4+
version = "0.2.0-alpha.3"
55
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
66
edition = "2018"
77

@@ -18,8 +18,8 @@ documentation = "https://docs.rs/block2/"
1818
license = "MIT"
1919

2020
[dependencies]
21-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.1" }
22-
block-sys = { path = "../block-sys", version = "0.0.2" }
21+
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2" }
22+
block-sys = { path = "../block-sys", version = "0.0.3" }
2323

2424
[package.metadata.docs.rs]
2525
default-target = "x86_64-apple-darwin"

block2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
#![warn(unreachable_pub)]
8282
#![deny(unsafe_op_in_unsafe_fn)]
8383
// Update in Cargo.toml as well.
84-
#![doc(html_root_url = "https://docs.rs/block2/0.2.0-alpha.2")]
84+
#![doc(html_root_url = "https://docs.rs/block2/0.2.0-alpha.3")]
8585

8686
extern crate std;
8787

objc-sys/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## Unreleased - YYYY-MM-DD
88

9+
10+
## 0.2.0-alpha.1 - 2022-01-03
11+
912
### Added
1013
* Added `objc_exception_try_enter` and `objc_exception_try_exit` on macOS x86.
1114

@@ -35,6 +38,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3538
* **BREAKING**: Removed `objc_setHook_lazyClassNamer` since it is only
3639
available since macOS 11.
3740

41+
## Fixed
42+
* `docs.rs` configuration.
43+
3844

3945
## 0.2.0-alpha.0 - 2021-12-22
4046

objc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objc-sys"
3-
version = "0.2.0-alpha.0" # Remember to update html_root_url in lib.rs
3+
version = "0.2.0-alpha.1" # Remember to update html_root_url in lib.rs
44
authors = ["Mads Marquart <[email protected]>"]
55
edition = "2018"
66

objc-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#![allow(non_camel_case_types)]
1919
#![allow(non_upper_case_globals)]
2020
#![allow(non_snake_case)]
21-
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-alpha.0")]
21+
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-alpha.1")]
2222

2323
// TODO: Replace `extern "C"` with `extern "C-unwind"` where applicable.
2424
// See https://rust-lang.github.io/rfcs/2945-c-unwind-abi.html.

objc2-encode/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## Unreleased - YYYY-MM-DD
88

9+
10+
## 2.0.0-beta.2 - 2022-01-03
11+
912
### Added
1013
* Implement `Hash` for `Encoding`.
1114

0 commit comments

Comments
 (0)