diff --git a/CHANGELOG.md b/CHANGELOG.md index e13fe34..03514c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ All user visible changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/), as described for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md) +## [0.15.0] - 2023-12-20 + +### Changed + +* Update to `hyper` 1.0. + +## [0.14.0] - 2022-04-24 + +### Changed + +* Callbacks are handled by implementing the CallbackHandler trait rather than a + closure. +* Update dependencies. ## [0.13.0] - 2022-01-31 @@ -164,6 +177,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ * Initial release +[0.15.0]: https://github.com/astraw/bui-backend/compare/bui-backend/0.14.0...bui-backend/0.15.0 +[0.14.0]: https://github.com/astraw/bui-backend/compare/bui-backend/0.13.0...bui-backend/0.14.0 [0.13.0]: https://github.com/astraw/bui-backend/compare/bui-backend/0.12.0...bui-backend/0.13.0 [0.12.0]: https://github.com/astraw/bui-backend/compare/bui-backend/0.11.0...bui-backend/0.12.0 [0.11.0]: https://github.com/astraw/bui-backend/compare/bui-backend/0.10.0...bui-backend/0.11.0 diff --git a/Cargo.toml b/Cargo.toml index 9e2e6bd..2facd02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bui-backend" description = "Brower User Interfaces (BUIs) with Tokio" -version = "0.14.0" +version = "0.15.0" authors = ["Andrew Straw "] documentation = "https://docs.rs/bui-backend/" repository = "https://github.com/astraw/bui-backend" diff --git a/bui-demo/Cargo.toml b/bui-demo/Cargo.toml index 6ee31cd..3f25ded 100644 --- a/bui-demo/Cargo.toml +++ b/bui-demo/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] async-change-tracker = "0.3.2" -bui-backend = {version="0.14", default-features = false, path=".."} +bui-backend = {version="0.15", default-features = false, path=".."} bui-backend-types = {version="0.8", path="../types", features=["uuid-v4"]} log = "0.4" env_logger = "0.10"