diff --git a/CHANGELOG.md b/CHANGELOG.md index ad74f4b..451dca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# 0.2.1 (2024-03-06) + +### Added + +- Add support for custom clocks and provide an optional real-time clock + ([#9], [#15]). + +[#9]: https://github.com/asynchronics/asynchronix/pull/9 +[#15]: https://github.com/asynchronics/asynchronix/pull/15 + +### Misc + +- Update copyright in MIT license to include contributors. + + # 0.2.0 (2023-08-15) ### Added (API-breaking changes) diff --git a/LICENSE-MIT b/LICENSE-MIT index 7b6352d..da42d8d 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2023 Serge Barral +Copyright (c) 2024 Asynchronics sp. z o.o. and Asynchronix Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e75e061..bad4df8 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -asynchronix = "0.2.0" +asynchronix = "0.2.1" ``` diff --git a/asynchronix/Cargo.toml b/asynchronix/Cargo.toml index 2d6b306..f5950ac 100644 --- a/asynchronix/Cargo.toml +++ b/asynchronix/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "asynchronix" # When incrementing version and releasing to crates.io: +# - Update crate version in this Cargo.toml # - Update crate version in README.md # - Update CHANGELOG.md # - Update if necessary copyright notice in LICENSE-MIT # - Create a "vX.Y.Z" git tag authors = ["Serge Barral "] -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" license = "MIT OR Apache-2.0"