diff --git a/CHANGELOG.md b/CHANGELOG.md index feb815f..c48d538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## 0.1.0 - 2021-07-01 +## [1.0.0] - 2023-06-30 + +### Added +- Defined minimum supported Rust version ([#9](https://github.com/MitMaro/captur/pull/9)) + +### Changed +- Upgraded to Rust 2021 ([#9](https://github.com/MitMaro/captur/pull/9)) +- Warn on lint failure instead of deny ([#6](https://github.com/MitMaro/captur/pull/6)) + +## [0.1.0] - 2021-07-01 ### Added - Initial project release + +[Unreleased]: https://github.com/MitMaro/captur/compare/0.1.0...HEAD +[1.0.0]: https://github.com/MitMaro/captur/compare/0.1.0...1.0.0 +[0.1.0]: https://github.com/MitMaro/captur/commit/e63285301746be5f3545e646a087ee54ca83f98e diff --git a/Cargo.toml b/Cargo.toml index c3b7e92..105ffa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "captur" -version = "0.1.0" +version = "1.0.0" authors = ["Tim Oram "] description = "Macro to capture whole structs from disjoint fields in a closure." repository = "https://github.com/MitMaro/captur" diff --git a/README.md b/README.md index ec34ac8..add50cf 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ While this is trivial to implement in closures where capturing is required, with ```toml [dependencies] -captur = "0.1" +captur = "1" ``` ```rust @@ -41,7 +41,7 @@ fn send_event_and_action(action: &Action, event: Event) { # Supported Rust Versions -This project will support all Rust versions since 1.51, when Rust first supported Rust 2021. +This project will support all Rust versions since 1.51 when Rust first supported Rust 2021. Dropping support for a Rust version will result in a major version bump, following [Semantic Versioning](https://semver.org/).