From b98b1af9d710b151b063705a8a398d05ca257a5d Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 9 Apr 2024 16:59:54 +0200 Subject: [PATCH] Prepare version `0.3.0` --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 501e8cf..fe4f32f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ > Shurly, this is a URL shortener with API management +## Version 0.3.0 + +### Features + +- Remove `memory` feature, Postgres is now always used +- Disallow `api/` prefix for slugs +- Upgrade all dependencies to their latest versions + +### Fixes + +- Upgrade to latest h2 (0.4.4) — Fixes GHSA-q6cp-qfwq-4gcv +- Upgrade to latest `whoami` (1.5.1) Fixes GHSA-w5w5-8vfh-xcjq + ## Version 0.2.4 ### Fixes diff --git a/Cargo.lock b/Cargo.lock index e04451e..be18c04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1564,7 +1564,7 @@ dependencies = [ [[package]] name = "shurly" -version = "0.2.4" +version = "0.3.0" dependencies = [ "anyhow", "argon2", diff --git a/Cargo.toml b/Cargo.toml index 2a497f4..e77fd69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shurly" -version = "0.2.4" +version = "0.3.0" edition = "2021" license = "MIT" homepage = "https://github.com/workplacebuddy/shurly"