diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ecdd3be..f21a7f04 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) project(Corrosion - VERSION 0.4.0 + VERSION 0.4.1 LANGUAGES NONE HOMEPAGE_URL "https://corrosion-rs.github.io/corrosion/" ) diff --git a/README.md b/README.md index 8ad80259..fa14ad4e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ include(FetchContent) FetchContent_Declare( Corrosion GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git - GIT_TAG v0.3 # Optionally specify a commit hash, version tag or branch here + GIT_TAG v0.4 # Optionally specify a commit hash, version tag or branch here ) FetchContent_MakeAvailable(Corrosion) diff --git a/RELEASES.md b/RELEASES.md index 8b6ede95..47937aef 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,11 @@ +# 0.4.1 (2023-06-03) + +This is a bugfix release. + +### Fixes + +- Fixes a regression on multi-config Generators + # 0.4.0 LTS (2023-06-01) No changes compared to v0.4.0-beta2. diff --git a/doc/src/quick_start.md b/doc/src/quick_start.md index c28f5da7..aa486b05 100644 --- a/doc/src/quick_start.md +++ b/doc/src/quick_start.md @@ -16,7 +16,7 @@ include(FetchContent) FetchContent_Declare( Corrosion GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git - GIT_TAG v0.3.5 # Optionally specify a commit hash, version tag or branch here + GIT_TAG v0.4 # Optionally specify a commit hash, version tag or branch here ) # Set any global configuration variables such as `Rust_TOOLCHAIN` before this line! FetchContent_MakeAvailable(Corrosion) diff --git a/doc/src/setup_corrosion.md b/doc/src/setup_corrosion.md index 918e980e..f2fac9d4 100644 --- a/doc/src/setup_corrosion.md +++ b/doc/src/setup_corrosion.md @@ -20,7 +20,7 @@ include(FetchContent) FetchContent_Declare( Corrosion GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git - GIT_TAG v0.3.2 # Optionally specify a commit hash, version tag or branch here + GIT_TAG v0.4 # Optionally specify a commit hash, version tag or branch here ) # Set any global configuration variables such as `Rust_TOOLCHAIN` before this line! FetchContent_MakeAvailable(Corrosion)