diff --git a/CHANGELOG.md b/CHANGELOG.md index 5535cda..abf7803 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to PNG Pong will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## 0.9.3 - 2024-11-05 +### Changed + - Use the parsenic crate for chunk decoding + ## 0.9.2 - 2024-08-10 ### Changed - Updated miniz\_oxide to v0.8 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d5ec34f..db6138e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,4 +13,4 @@ don't want to be doing work that might be rejected. ## git workflow -Please file PR's against the `master` branch (it's the default, so super easy!). +Please file PR's against the `v0` branch (it's the default, so super easy!). diff --git a/Cargo.lock b/Cargo.lock index aa923c5..0dde58b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "png_pong" -version = "0.9.2" +version = "0.9.3" dependencies = [ "criterion", "miniz_oxide", diff --git a/Cargo.toml b/Cargo.toml index b8886ef..11fb6f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ license = "Apache-2.0 OR Zlib" description = "A pure Rust PNG/APNG encoder & decoder" repository = "https://github.com/AldaronLau/png_pong" documentation = "https://docs.rs/png_pong" -homepage = "https://github.com/AldaronLau/png_pong/blob/master/CHANGELOG.md" +homepage = "https://github.com/AldaronLau/png_pong/releases" include = [ "Cargo.toml", "README.md",