mirror of
https://github.com/samsonjs/agate.git
synced 2026-03-25 09:05:50 +00:00
release 3.2.3
This commit is contained in:
parent
b6ff8f7758
commit
7cd245c79e
4 changed files with 24 additions and 8 deletions
13
CHANGELOG.md
13
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
|
||||
|
|
|
|||
6
Cargo.lock
generated
6
Cargo.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "agate"
|
||||
version = "3.2.2"
|
||||
version = "3.2.3"
|
||||
authors = ["Matt Brubeck <mbrubeck@limpet.net>", "Johann150 <johann+agate@qwertqwefsday.eu>"]
|
||||
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]
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue