diff --git a/CHANGELOG.md b/CHANGELOG.md index df1d7f9..0d1d60d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +## [3.2.3] - 2022-02-04 +Thank you to T. Spivey for contributing to this release. + +### Fixed +* improper IRIs are handled instead of crashing (bug reported via email) +* updated dependencies + ## [3.2.2] - 2022-01-25 Thank you to @Suzie97 for contributing to this release. @@ -14,7 +23,6 @@ Thank you to @Suzie97 for contributing to this release. ### Fixed * updated dependencies - ## [3.2.1] - 2021-12-02 Thank you to @MatthiasPortzel for contributing to this release. @@ -320,7 +328,8 @@ Thank you to @m040601 for contributing to this release. ## [1.0.0] - 2020-05-21 -[Unreleased]: https://github.com/mbrubeck/agate/compare/v3.2.2...HEAD +[Unreleased]: https://github.com/mbrubeck/agate/compare/v3.2.3...HEAD +[3.2.3]: https://github.com/mbrubeck/agate/compare/v3.2.2...v3.2.3 [3.2.2]: https://github.com/mbrubeck/agate/compare/v3.2.1...v3.2.2 [3.2.1]: https://github.com/mbrubeck/agate/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/mbrubeck/agate/compare/v3.1.3...v3.2.0 diff --git a/Cargo.lock b/Cargo.lock index 8803cbd..160c6d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "agate" -version = "3.2.2" +version = "3.2.3" dependencies = [ "anyhow", "configparser", @@ -213,9 +213,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.114" +version = "0.2.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0005d08a8f7b65fb8073cb697aa0b12b631ed251ce73d862ce50eeb52ce3b50" +checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" [[package]] name = "log" diff --git a/Cargo.toml b/Cargo.toml index b733992..ab2a141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agate" -version = "3.2.2" +version = "3.2.3" authors = ["Matt Brubeck ", "Johann150 "] description = "Very simple server for the Gemini hypertext protocol" keywords = ["server", "gemini", "hypertext", "internet", "protocol"] @@ -8,7 +8,7 @@ categories = ["network-programming"] repository = "https://github.com/mbrubeck/agate" readme = "README.md" license = "MIT/Apache-2.0" -edition = "2018" +edition = "2021" exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md", "/tests"] [dependencies] diff --git a/content/index.gmi b/content/index.gmi index c2f0369..d35916f 100644 --- a/content/index.gmi +++ b/content/index.gmi @@ -215,7 +215,14 @@ The format is based on Keep a Changelog and this project adheres to Semantic Ver => https://keepachangelog.com/en/1.0.0/ Keep a Changelog home page => https://semver.org/spec/v2.0.0.html Semantic versioning standard v2.0.0 -## [3.2.3] - 2022-01-25 +## [3.2.3] - 2022-02-04 +Thank you to T. Spivey for contributing to this release. + +### Fixed +* improper IRIs are handled instead of crashing (bug reported via email) +* updated dependencies + +## [3.2.2] - 2022-01-25 Thank you to @Suzie97 for contributing to this release. ### Added