Skip to content

Commit c32e4bf

Browse files
committed
Bump objc2-encode version 2.0.0-beta.2 -> 2.0.0-pre.0
1 parent 9752862 commit c32e4bf

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

block2/CHANGELOG.md

Lines changed: 6 additions & 3 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+
### Changed
10+
* **BREAKING**: Updated `objc2-encode` to `v2.0.0-pre.0`
11+
12+
### Removed
13+
* **BREAKING**: Removed `DerefMut` implementation for `ConcreteBlock`.
14+
915

1016
## 0.2.0-alpha.3 - 2022-01-03
1117

@@ -14,9 +20,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1420
* Improved documentation.
1521
* **BREAKING**: Updated `ffi` module to `block-sys v0.0.3`
1622

17-
### Removed
18-
* **BREAKING**: Removed `DerefMut` implementation for `ConcreteBlock`.
19-
2023

2124
## 0.2.0-alpha.2 - 2021-12-22
2225

block2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ gnustep-2-0 = ["gnustep-1-9", "block-sys/gnustep-2-0"]
3030
gnustep-2-1 = ["gnustep-2-0", "block-sys/gnustep-2-1"]
3131

3232
[dependencies]
33-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2", default-features = false }
33+
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-pre.0", default-features = false }
3434
block-sys = { path = "../block-sys", version = "0.0.3", default-features = false }
3535

3636
[package.metadata.docs.rs]

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-pre.0 - 2022-06-13
11+
912
### Added
1013
* Added `Encoding::C_LONG` and `Encoding::C_U_LONG` to help with platform
1114
compatibility; use these instead of `c_long::ENCODING` and

objc2-encode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "objc2-encode"
33
# Remember to update html_root_url in lib.rs and README.md
4-
version = "2.0.0-beta.2"
4+
version = "2.0.0-pre.0"
55
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
66
edition = "2021"
77

objc2-encode/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
#![warn(unreachable_pub)]
9292
#![deny(unsafe_op_in_unsafe_fn)]
9393
// Update in Cargo.toml as well.
94-
#![doc(html_root_url = "https://docs.rs/objc2-encode/2.0.0-beta.2")]
94+
#![doc(html_root_url = "https://docs.rs/objc2-encode/2.0.0-pre.0")]
9595

9696
#[cfg(doctest)]
9797
#[doc = include_str!("../README.md")]

objc2/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6464
* **BREAKING**: Sealed the `MethodImplementation` trait, and made it's `imp`
6565
method privat.
6666
* **BREAKING**: Updated `ffi` module to `objc-sys v0.2.0-beta.0`.
67+
* **BREAKING**: Updated `objc2-encode` (`Encoding`, `Encode`, `RefEncode` and
68+
`EncodeArguments`) to `v2.0.0-pre.0`.
6769

6870
### Fixed
6971
* 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
@@ -51,7 +51,7 @@ gnustep-2-1 = ["gnustep-2-0", "objc-sys/gnustep-2-1"]
5151
[dependencies]
5252
malloc_buf = { version = "1.0", optional = true }
5353
objc-sys = { path = "../objc-sys", version = "=0.2.0-beta.0", default-features = false }
54-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2", default-features = false }
54+
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-pre.0", default-features = false }
5555

5656
[dev-dependencies]
5757
iai = { version = "0.1", git = "https://github.com/madsmtm/iai", branch = "callgrind" }

0 commit comments

Comments
 (0)