We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6eb141 commit 57eed58Copy full SHA for 57eed58
CHANGELOG.md
@@ -0,0 +1,17 @@
1
+# Changelog
2
+
3
+All notable changes to this project will be documented in this file.
4
5
+This project adheres to [Semantic Versioning](https://semver.org).
6
7
+## Unreleased
8
9
+## 0.1.1
10
11
+- Deprecate `unsafe_pinned!` and `unsafe_unpinned!`. Use `pin-project` or `pin-project-lite` crate instead. (#33)
12
+- Soft-deprecate `pin_mut!` in favor of `std::pin::pin!` that stabilized in Rust 1.68. (#39)
13
14
+## 0.1.0
15
16
+- First non-alpha release.
17
+- Fix some `core` symbol hygiene.
Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pin-utils"
edition = "2018"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Josef Brandl <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
0 commit comments