From 61094343f7c3c8a72f09706f3223fe26bdd074a4 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Wed, 21 Apr 2021 05:39:01 -0700 Subject: [PATCH] Prepare a 0.2.1 release Summary: We are now relying on Dupe for NonZero in Starlark head, so make a new Gazebo release. Reviewed By: blackm00n Differential Revision: D27907680 fbshipit-source-id: 7dcfa2cbd7f5ec391a6e6787b34f3f2b47980199 --- CHANGELOG.md | 8 +++++++- gazebo/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5832e..df1834f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Gazebo -## 0.2.0 (March 22, 2020) +## 0.2.1 (April 21, 2021) + +* Add `Dupe` for `NonZero` types. +* Add an implementation of `AnyLifetime` for `str`. +* Implement traits on `ARef`, specifically `Display`, `Eq`, `Ord`, `PartialEq`, `PartialOrd`. + +## 0.2.0 (March 22, 2021) * Breaking change: Rename `clones` to `cloned`, `dupes` to `duped` and `owns` to `owned` - to follow Rust conventions better. * Add `Dupe` for `fn()` (up to arity 12). diff --git a/gazebo/Cargo.toml b/gazebo/Cargo.toml index e6dbad9..ed3fd5f 100644 --- a/gazebo/Cargo.toml +++ b/gazebo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gazebo" -version = "0.2.0" +version = "0.2.1" license = "MIT OR Apache-2.0" authors = ["Facebook"] edition = "2018"