Skip to content

Commit 1498762

Browse files
committed
Bump block2 0.6.0 -> 0.6.1
1 parent 114fb5b commit 1498762

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ default.extend-words.lod = "lod"
8686
# (this of course requires that the API we expose is similar enough that framework
8787
# crates themselves won't break in that version update. But that's the plan).
8888
dispatch2 = { path = "crates/dispatch2", version = ">=0.2.0, <0.4.0", default-features = false } # v0.2.0 or v0.3.*
89-
block2 = { path = "crates/block2", version = ">=0.6.0, <0.8.0", default-features = false } # v0.6.0 or v0.7.*
89+
block2 = { path = "crates/block2", version = ">=0.6.1, <0.8.0", default-features = false } # v0.6.1 or v0.7.*
9090
objc2 = { path = "crates/objc2", version = ">=0.6.1, <0.8.0", default-features = false } # v0.6.1 or v0.7.*
9191
# Use a reasonably new version of libc.
9292
libc = { version = "0.2.80", default-features = false }

crates/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+
10+
## 0.6.1 - 2025-04-19
11+
12+
### Added
13+
* Added `DynBlock` alias to help facilitate upgrading to v0.7 when that's done.
14+
915
### Fixed
1016
* Slightly improved documentation around `ManualBlockEncoding`.
1117

crates/block2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block2"
3-
version = "0.6.0" # Remember to update html_root_url in lib.rs
3+
version = "0.6.1" # Remember to update html_root_url in lib.rs
44
description = "Apple's C language extension of blocks"
55
keywords = ["objective-c", "macos", "ios", "blocks"]
66
categories = [

crates/block2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@
357357
#![warn(clippy::missing_errors_doc)]
358358
#![warn(clippy::missing_panics_doc)]
359359
// Update in Cargo.toml as well.
360-
#![doc(html_root_url = "https://docs.rs/block2/0.6.0")]
360+
#![doc(html_root_url = "https://docs.rs/block2/0.6.1")]
361361
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg_hide))]
362362
#![cfg_attr(docsrs, doc(cfg_hide(doc)))]
363363
#![cfg_attr(feature = "unstable-coerce-pointee", feature(derive_coerce_pointee))]

0 commit comments

Comments
 (0)