From d62cb2565c3728ef7ab8201326ede4a3b2d94582 Mon Sep 17 00:00:00 2001 From: Markus Mayer Date: Sat, 24 Jun 2023 16:37:19 +0200 Subject: [PATCH] Finish 0.4.0 --- CHANGELOG.md | 2 +- Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5f060d..e1a3248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 0.4.0 - 2023-06-24 ### Added diff --git a/Cargo.toml b/Cargo.toml index da49265..9e8f53e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shortguid" -version = "0.4.0-unstable" +version = "0.4.0" edition = "2021" license = "EUPL-1.2" description = "Short URL-safe Base64 encoded UUIDs" @@ -11,8 +11,8 @@ rust-version = "1.67.1" [dependencies] arbitrary = { version = "1.3.0", optional = true } -base64 = "0.21.0" -uuid = "1.3.0" +base64 = "0.21.2" +uuid = "1.3.4" [features] default = ["random"] @@ -21,7 +21,7 @@ random = ["uuid/v4"] [dev-dependencies] hex = "0.4.3" -clap = "4.2.4" +clap = "4.3.8" [package.metadata.docs.rs] all-features = true