Skip to content

Commit 9ccb3a4

Browse files
authored
Merge pull request #248 from madsmtm/new-versions
New versions
2 parents 43c1d8a + 230fb98 commit 9ccb3a4

File tree

16 files changed

+80
-19
lines changed

16 files changed

+80
-19
lines changed

block-sys/CHANGELOG.md

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

77
## Unreleased - YYYY-MM-DD
88

9+
## 0.1.0-beta.1 - 2022-08-28
10+
11+
### Fixed
12+
* Fixed `docs.rs` setup.
13+
914

1015
## 0.1.0-beta.0 - 2022-07-19
1116

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.1.0-beta.0" # Remember to update html_root_url in lib.rs
3+
version = "0.1.0-beta.1" # Remember to update html_root_url in lib.rs
44
authors = ["Mads Marquart <[email protected]>"]
55
edition = "2021"
66

@@ -55,7 +55,7 @@ unstable-objfw = []
5555
unstable-docsrs = ["objc-sys", "objc-sys/unstable-docsrs"]
5656

5757
[dependencies]
58-
objc-sys = { path = "../objc-sys", version = "=0.2.0-beta.1", default-features = false, optional = true }
58+
objc-sys = { path = "../objc-sys", version = "=0.2.0-beta.2", default-features = false, optional = true }
5959

6060
[package.metadata.docs.rs]
6161
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
@@ -20,7 +20,7 @@
2020
#![warn(clippy::cargo)]
2121
#![warn(clippy::ptr_as_ptr)]
2222
// Update in Cargo.toml as well.
23-
#![doc(html_root_url = "https://docs.rs/block-sys/0.1.0-beta.0")]
23+
#![doc(html_root_url = "https://docs.rs/block-sys/0.1.0-beta.1")]
2424
#![cfg_attr(feature = "unstable-docsrs", feature(doc_auto_cfg, doc_cfg_hide))]
2525
#![cfg_attr(feature = "unstable-docsrs", doc(cfg_hide(doc)))]
2626

block2/CHANGELOG.md

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

77
## Unreleased - YYYY-MM-DD
88

9+
## 0.2.0-alpha.6 - 2022-08-28
10+
11+
### Changed
12+
* **BREAKING**: Updated `objc2-encode` to `v2.0.0-pre.2`.
13+
* Updated `ffi` module to `block-sys v0.1.0-beta.1`.
14+
915
### Fixed
1016
* **BREAKING**: Cleaned up `BlockArguments` trait, it is now sealed and a
1117
subtrait of `EncodeArguments`.

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.5"
4+
version = "0.2.0-alpha.6"
55
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
66
edition = "2021"
77

@@ -34,8 +34,8 @@ gnustep-2-0 = ["gnustep-1-9", "block-sys/gnustep-2-0", "objc2-encode/gnustep-2-0
3434
gnustep-2-1 = ["gnustep-2-0", "block-sys/gnustep-2-1", "objc2-encode/gnustep-2-1"]
3535

3636
[dependencies]
37-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-pre.1", default-features = false }
38-
block-sys = { path = "../block-sys", version = "=0.1.0-beta.0", default-features = false }
37+
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-pre.2", default-features = false }
38+
block-sys = { path = "../block-sys", version = "=0.1.0-beta.1", default-features = false }
3939

4040
[package.metadata.docs.rs]
4141
default-target = "x86_64-apple-darwin"

block2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
#![warn(clippy::cargo)]
8484
#![warn(clippy::ptr_as_ptr)]
8585
// Update in Cargo.toml as well.
86-
#![doc(html_root_url = "https://docs.rs/block2/0.2.0-alpha.5")]
86+
#![doc(html_root_url = "https://docs.rs/block2/0.2.0-alpha.6")]
8787

8888
extern crate alloc;
8989
extern crate std;

objc-sys/CHANGELOG.md

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

77
## Unreleased - YYYY-MM-DD
88

9+
## 0.2.0-beta.2 - 2022-08-28
10+
11+
### Fixed
12+
* Fixed `docs.rs` setup.
13+
914

1015
## 0.2.0-beta.1 - 2022-07-19
1116

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-beta.1"
5+
version = "0.2.0-beta.2"
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
@@ -24,7 +24,7 @@
2424
#![allow(non_camel_case_types)]
2525
#![allow(non_upper_case_globals)]
2626
#![allow(non_snake_case)]
27-
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-beta.1")]
27+
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-beta.2")]
2828
#![cfg_attr(feature = "unstable-c-unwind", feature(c_unwind))]
2929
#![cfg_attr(feature = "unstable-docsrs", feature(doc_auto_cfg, doc_cfg_hide))]
3030
#![cfg_attr(feature = "unstable-docsrs", doc(cfg_hide(doc)))]

objc2-encode/CHANGELOG.md

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

77
## Unreleased - YYYY-MM-DD
88

9+
## 2.0.0-pre.2 - 2022-08-28
10+
911
### Added
1012
* Added `EncodeConvert` trait to help with correctly handling `BOOL`/`bool`.
1113

0 commit comments

Comments
 (0)