mirror of
https://github.com/samsonjs/agate.git
synced 2026-03-25 09:05:50 +00:00
release v3.1.2
This commit is contained in:
parent
6d3bc1fc0c
commit
246f7a2e02
4 changed files with 22 additions and 3 deletions
12
CHANGELOG.md
12
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).
|
||||
|
||||
## [3.1.2] - 2021-10-15
|
||||
Thank you to @etam for contributing to this release.
|
||||
|
||||
### Fixed
|
||||
* when starting up on a system that automatically listens in dual stack mode (e.g. some
|
||||
linux distributions seem to do this), detect a second unspecified address to not cause
|
||||
the "address in use" error with the default listening addresses
|
||||
* updated a dependency
|
||||
|
||||
## [3.1.1] - 2021-10-14
|
||||
Thank you to @jgarte and @alvaro-cuesta for contributing to this release.
|
||||
|
||||
|
|
@ -275,7 +284,8 @@ Thank you to @m040601 for contributing to this release.
|
|||
|
||||
## [1.0.0] - 2020-05-21
|
||||
|
||||
[Unreleased]: https://github.com/mbrubeck/agate/compare/v3.1.1...HEAD
|
||||
[Unreleased]: https://github.com/mbrubeck/agate/compare/v3.1.2...HEAD
|
||||
[3.1.2]: https://github.com/mbrubeck/agate/compare/v3.1.1...v3.1.2
|
||||
[3.1.1]: https://github.com/mbrubeck/agate/compare/v3.1.0...v3.1.1
|
||||
[3.1.0]: https://github.com/mbrubeck/agate/compare/v3.0.3...v3.1.0
|
||||
[3.0.3]: https://github.com/mbrubeck/agate/compare/v3.0.2...v3.0.3
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -4,7 +4,7 @@ version = 3
|
|||
|
||||
[[package]]
|
||||
name = "agate"
|
||||
version = "3.1.1"
|
||||
version = "3.1.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"configparser",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "agate"
|
||||
version = "3.1.1"
|
||||
version = "3.1.2"
|
||||
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"]
|
||||
|
|
|
|||
|
|
@ -198,6 +198,15 @@ 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.1.2] - 2021-10-15
|
||||
Thank you to @etam for contributing to this release.
|
||||
|
||||
### Fixed
|
||||
* when starting up on a system that automatically listens in dual stack mode (e.g. some
|
||||
linux distributions seem to do this), detect a second unspecified address to not cause
|
||||
the "address in use" error with the default listening addresses
|
||||
* updated a dependency
|
||||
|
||||
## [3.1.1] - 2021-10-14
|
||||
Thank you to @jgarte and @alvaro-cuesta for contributing to this release.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue