agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 37eef3dc9b01ad521888035d8c632b7c6f329fd1
parent 6af5efbf675b4513c228208ff46783a90a3f2b65
Author: Johann150 <johann.galle@protonmail.com>
Date:   Mon, 25 Oct 2021 17:49:02 +0200

update dependencies

Diffstat:
MCHANGELOG.md | 7+++++++
MCargo.lock | 10+++++-----
MCargo.toml | 4++--
Mcontent/index.gmi | 7+++++++
4 files changed, 21 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3] - 2021-10-25 +Thank you to @FoxKyong for contributing to this release. + +### Fixed +* the fix for dual stack listening from 3.1.2 was executed asynchronously and would thus + sometimes fail. starting the listeners on different socket addresses is now synchronous + ## [3.1.2] - 2021-10-15 Thank you to @etam for contributing to this release. diff --git a/Cargo.lock b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "agate" -version = "3.1.2" +version = "3.1.3" dependencies = [ "anyhow", "configparser", @@ -90,9 +90,9 @@ dependencies = [ [[package]] name = "configparser" -version = "2.1.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7201ee416d124d589a820111ba755930df8b75855321a9a1b87312a0597ec8f" +checksum = "06821ea598337a8412cf47c5b71c3bc694a7f0aed188ac28b836fab164a2c202" [[package]] name = "env_logger" @@ -234,9 +234,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.104" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b2f96d100e1cf1929e7719b7edb3b90ab5298072638fccd77be9ce942ecdfce" +checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" [[package]] name = "log" diff --git a/Cargo.toml b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agate" -version = "3.1.2" +version = "3.1.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"] @@ -12,7 +12,7 @@ edition = "2018" exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md"] [dependencies] -configparser = "2.0" +configparser = "3.0" env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] } futures-util = "0.3" getopts = "0.2.21" diff --git a/content/index.gmi b/content/index.gmi @@ -198,6 +198,13 @@ 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.3] - 2021-10-25 +Thank you to @FoxKyong for contributing to this release. + +### Fixed +* the fix for dual stack listening from 3.1.2 was executed asynchronously and would thus + sometimes fail. starting the listeners on different socket addresses is now synchronous + ## [3.1.2] - 2021-10-15 Thank you to @etam for contributing to this release.