From 7b5f9c80431fc5c8f542e58b464439f7c9c5ce70 Mon Sep 17 00:00:00 2001 From: Serge Barral Date: Wed, 15 May 2024 15:04:57 +0200 Subject: [PATCH] Prepare release v0.3.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- LICENSE-MIT | 2 +- README.md | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad16479..c274be0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.3.0 (2024-05-15) + +* Make it possible to specify a deadline when sending or receiving ([#6]). +* Increase the MSRV to work around breakage introduced by the new `--check-cfg` + being enabled by default. + +*Note*: there are no API-breaking changes, the minor version was only increased +due to the new MSRV. + +[#6]: https://github.com/asynchronics/tachyonix/pull/6 + # 0.2.1 (2023-07-16) - Use internally the newly spun-off `async-event` crate instead of the `event` diff --git a/Cargo.toml b/Cargo.toml index 306c601..1491459 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "tachyonix" # - Update CHANGELOG.md # - Update if necessary copyright notice in LICENSE-MIT # - Create a "vX.Y.Z" git tag -version = "0.2.1" +version = "0.3.0" authors = ["Serge Barral "] edition = "2021" rust-version = "1.77" diff --git a/LICENSE-MIT b/LICENSE-MIT index 7b6352d..bc3a2e8 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2023 Serge Barral +Copyright (c) 2024 Serge Barral 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 9e615f4..e5d53d3 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -tachyonix = "0.2.1" +tachyonix = "0.3.0" ```