diff --git a/CHANGELOG.md b/CHANGELOG.md index 935265c..a60dc3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### Version 0.12.5 +- Update shapes lib + ### Version 0.12.4 - Add `ShapeCollection::bounds()` diff --git a/Cargo.toml b/Cargo.toml index 1d54f1f..7fa95ec 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "buffer-graphics-lib" -version = "0.12.4" +version = "0.12.5" edition = "2021" authors = ["Emma Britton "] description = "Simple graphics library for buffers" @@ -18,7 +18,7 @@ ici = ["ici-files"] [dependencies] thiserror = "1.0.51" -graphics-shapes = "0.2.4" +graphics-shapes = "0.2.5" serde = { version = "1.0.193", features = ["derive"], optional = true } image = { version = "0.24.7", optional = true } log = "0.4.20" diff --git a/README.md b/README.md index a4d8ed6..135d9c4 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The `Graphics` struct needs a mutable slice to work on and so mostly likely you' In your `Cargo.toml` file add ```toml -buffer-graphics-lib = "0.12.4" +buffer-graphics-lib = "0.12.5" ``` ### Code