From 57eed58e928ee05f6a8666c4da5319a8d2d2d6ac Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 5 Apr 2024 22:56:01 +0900 Subject: [PATCH] Release 0.1.1 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b395dad --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +This project adheres to [Semantic Versioning](https://semver.org). + +## Unreleased + +## 0.1.1 + +- Deprecate `unsafe_pinned!` and `unsafe_unpinned!`. Use `pin-project` or `pin-project-lite` crate instead. (#33) +- Soft-deprecate `pin_mut!` in favor of `std::pin::pin!` that stabilized in Rust 1.68. (#39) + +## 0.1.0 + +- First non-alpha release. +- Fix some `core` symbol hygiene. diff --git a/Cargo.toml b/Cargo.toml index a945d46..983a876 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pin-utils" edition = "2018" -version = "0.1.0" +version = "0.1.1" authors = ["Josef Brandl "] license = "MIT OR Apache-2.0" readme = "README.md"