Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down