diff --git a/CHANGELOG.md b/CHANGELOG.md index 290277c..6e9063c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [1.1.1] - 2024-04-13 + +### Continuous Integration + +- Only compile artifacts when new tags are pushed. ([806b5cfa](https://github.com/zedseven/breeze/commit/806b5cfa)) + +### Miscellaneous Tasks + +- Remove the use of `nightly` Rust features so that the program can be compiled with stable Rust. ([6549eed1](https://github.com/zedseven/breeze/commit/6549eed1)) + ## [1.1.0] - 2024-04-13 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6f7edf4..df81383 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "breeze" -version = "1.1.0" +version = "1.1.1" dependencies = [ "anyhow", "gfx", diff --git a/Cargo.toml b/Cargo.toml index d9c147b..167d632 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "breeze" -version = "1.1.0" # Managed by `release.sh` +version = "1.1.1" # Managed by `release.sh` authors = ["Zacchary Dempsey-Plante "] edition = "2021" license = "MIT OR Apache-2.0"