From b614a17ee3ea1ff204d4a30775a15eab81d060e7 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Fri, 15 Nov 2024 12:45:31 -0500 Subject: [PATCH] Timestamp v0.5.0 Also: fix the repository link and refine the changelog. --- CHANGELOG.md | 9 +++++++-- Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f45620..fefb5ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file. It uses the [Semantic Versioning]: https://semver.org/spec/v2.0.0.html "Semantic Versioning 2.0.0" -## [v0.5.0] — Unreleased +## [v0.5.0] — 2024-11-15 ### ⚡ Improvements @@ -22,7 +22,12 @@ All notable changes to this project will be documented in this file. It uses the * Removed the `valid::ValidationError` enum. * Changed the errors returned from the [valid module] from boxed [boon] - errors with lifetimes to [error module] errors with no lifetimes. + errors with lifetimes to [error module] errors with no lifetimes, + eliminating the need for lifetimes on the Validator struct and methods. + +### 📚 Documentation + +* Fixed the repository link in `Cargo.toml`. [v0.5.0]: https://github.com/pgxn/meta/compare/v0.4.0...v0.5.0 [error module]: https://docs.rs/pgxn_meta/0.5.0/pgxn_meta/error/ diff --git a/Cargo.lock b/Cargo.lock index 1ab3d39..f673d67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,7 +544,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pgxn_meta" -version = "0.4.0" +version = "0.5.0" dependencies = [ "assert-json-diff", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index 502203d..add2b8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "pgxn_meta" -version = "0.4.0" +version = "0.5.0" description = "The PGXN distribution metadata specification" -repository = "https://github.com/pgxn/pgxn-meta-spec" +repository = "https://github.com/pgxn/meta" documentation = "https://docs.rs/pgxn_meta/" authors = ["David E. Wheeler "] readme = "README.md"