Skip to content

Commit bdc4cf8

Browse files
committed
Prepare v0.6.1 release
1 parent 56a1ed1 commit bdc4cf8

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.22)
22
project(Corrosion
3-
VERSION 0.6.0
3+
VERSION 0.6.1
44
LANGUAGES NONE
55
HOMEPAGE_URL "https://corrosion-rs.github.io/corrosion/"
66
)

RELEASES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v0.6.1 (2025-12-30)
2+
3+
## Fixes
4+
5+
- Fix building shared libraries for iOS.
6+
- Fix host linker detection for iOS and add the `CORROSION_HOST_TARGET_LINKER` cache variable,
7+
to allow users to override the linker used for the host build (required for build-scripts and proc-macros).
8+
19
# v0.6.0 (2025-11-23)
210

311
### Breaking Changes

doc/src/usage.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,11 @@ them **before** `find_package(Corrosion REQUIRED)`.
183183
- `CORROSION_TOOLS_RUST_TOOLCHAIN:STRING`: Specify a different toolchain (e.g. `stable`) to use for compiling helper
184184
tools such as `cbindgen` or `cxxbridge`. This can be useful when you want to compile your project with an
185185
older rust version (e.g. for checking the MSRV), but you can build build-tools with a newer installed rust version.
186+
- `CORROSION_HOST_TARGET_LINKER`: This cache variable is currently **only used when targeting iOS** and allows the user
187+
to select a linker-driver (e.g. `/usr/bin/cc`) for linking artifacts for the host target. This option is useful
188+
when the build contains build-scripts or proc-macros (which run on the host target) and the default value is not
189+
working.
190+
186191

187192
#### Enable Convenience Options
188193

0 commit comments

Comments
 (0)