Skip to content

Commit

Permalink
Bump objc2-proc-macros 0.1.3 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Jan 22, 2025
1 parent 54fcdfe commit 6fd5a33
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 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.

10 changes: 8 additions & 2 deletions crates/objc2-proc-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased - YYYY-MM-DD


## 0.2.0 - 2025-01-22

### Removed
* **BREAKING**: Removed the deprecated `"apple"` Cargo feature flag.


## 0.1.3 - 2024-05-21

### Fixed
Expand All @@ -17,8 +23,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 0.1.2 - 2024-05-21 (Yanked)

### Deprecated
* Deprecated the `apple` Cargo feature flag, it is assumed by default on Apple
platforms.
* Deprecated the `"apple"` Cargo feature flag, it is assumed by default on
Apple platforms.


## 0.1.1 - 2023-02-07
Expand Down
2 changes: 1 addition & 1 deletion crates/objc2-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "objc2-proc-macros"
# Remember to update html_root_url in lib.rs
version = "0.1.3"
version = "0.2.0"
authors = ["Mads Marquart <mads@marquart.dk>", "Calvin Watford"]
description = "Procedural macros for the objc2 project"
keywords = ["objective-c", "macos", "ios", "proc-macro"]
Expand Down
2 changes: 1 addition & 1 deletion crates/objc2-proc-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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-proc-macros/0.1.3")]
#![doc(html_root_url = "https://docs.rs/objc2-proc-macros/0.2.0")]

use core::hash::{Hash, Hasher};

Expand Down
2 changes: 1 addition & 1 deletion crates/objc2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ unstable-requires-macos = []

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

[dev-dependencies]
Expand Down

0 comments on commit 6fd5a33

Please sign in to comment.