Skip to content

Commit 9752862

Browse files
committed
Bump objc-sys version 0.2.0-alpha.1 -> 0.2.0-beta.0
1 parent d4586ea commit 9752862

File tree

7 files changed

+9
-4
lines changed

7 files changed

+9
-4
lines changed

block-sys/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1111
future compatibility, until we reach 1.0 (so `DEP_BLOCK_CC_ARGS` in build
1212
scripts becomes `DEP_BLOCK_0_0_CC_ARGS`).
1313
* **BREAKING**: Apple's runtime is now always the default.
14+
* **BREAKING**: Updated `objc-sys` to `v0.2.0-beta.0`.
1415

1516
### Fixed
1617
* **BREAKING**: Tweak the types of a lot of fields and arguments.

block-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ unstable-objfw = []
5050
unstable-docsrs = ["objc-sys"] # Need `objc-sys` on certain platforms
5151

5252
[dependencies]
53-
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.1", default-features = false, optional = true }
53+
objc-sys = { path = "../objc-sys", version = "=0.2.0-beta.0", default-features = false, optional = true }
5454

5555
[package.metadata.docs.rs]
5656
default-target = "x86_64-apple-darwin"

objc-sys/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+
## 0.2.0-beta.0 - 2022-06-13
11+
912
### Changed
1013
* **BREAKING**: Changed `links` key from `objc` to `objc_0_2` for better
1114
future compatibility, until we reach 1.0 (so `DEP_OBJC_CC_ARGS` in build

objc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "objc-sys"
33
# Remember to update `html_root_url` in lib.rs, the `links` key, and the
44
# exception function name.
5-
version = "0.2.0-alpha.1"
5+
version = "0.2.0-beta.0"
66
authors = ["Mads Marquart <[email protected]>"]
77
edition = "2021"
88

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.1")]
21+
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-beta.0")]
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/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6363
in practice).
6464
* **BREAKING**: Sealed the `MethodImplementation` trait, and made it's `imp`
6565
method privat.
66+
* **BREAKING**: Updated `ffi` module to `objc-sys v0.2.0-beta.0`.
6667

6768
### Fixed
6869
* Properly sealed the `MessageArguments` trait (it already had a hidden

objc2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ gnustep-2-1 = ["gnustep-2-0", "objc-sys/gnustep-2-1"]
5050

5151
[dependencies]
5252
malloc_buf = { version = "1.0", optional = true }
53-
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.1", default-features = false }
53+
objc-sys = { path = "../objc-sys", version = "=0.2.0-beta.0", default-features = false }
5454
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2", default-features = false }
5555

5656
[dev-dependencies]

0 commit comments

Comments
 (0)