Skip to content

Commit

Permalink
Bump objc2-encode 4.0.3 -> 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Jan 22, 2025
1 parent 56d5fb7 commit 33b06a8
Show file tree
Hide file tree
Showing 5 changed files with 7 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.

3 changes: 3 additions & 0 deletions crates/objc2-encode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased - YYYY-MM-DD


## 4.1.0 - 2025-01-22

### Added
* Added `Encoding::size`, which computes the size of the encoded type for the
current target.
Expand Down
2 changes: 1 addition & 1 deletion crates/objc2-encode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "objc2-encode"
version = "4.0.3" # Remember to update html_root_url in lib.rs
version = "4.1.0" # Remember to update html_root_url in lib.rs
description = "Objective-C type-encoding representation and parsing"
keywords = ["objective-c", "macos", "ios", "encode"]
categories = [
Expand Down
2 changes: 1 addition & 1 deletion crates/objc2-encode/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#![warn(clippy::missing_errors_doc)]
#![warn(clippy::missing_panics_doc)]
// Update in Cargo.toml as well.
#![doc(html_root_url = "https://docs.rs/objc2-encode/4.0.3")]
#![doc(html_root_url = "https://docs.rs/objc2-encode/4.1.0")]

#[cfg(not(feature = "alloc"))]
compile_error!("the `alloc` feature currently must be enabled");
Expand Down
2 changes: 1 addition & 1 deletion crates/objc2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ unstable-objfw = []
unstable-requires-macos = []

[dependencies]
objc2-encode = { path = "../objc2-encode", version = "4.0.3", default-features = false }
objc2-encode = { path = "../objc2-encode", version = "4.1.0", default-features = false }
objc2-proc-macros = { path = "../objc2-proc-macros", version = "0.2.0", optional = true }
objc2-exception-helper = { path = "../objc2-exception-helper", version = "0.1.1", default-features = false, optional = true }

Expand Down

0 comments on commit 33b06a8

Please sign in to comment.