From c7a9ea3452fd72ca124930fa228f47f0ff20533b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Kera=CC=88nen?= Date: Mon, 17 Jul 2023 15:07:14 +0300 Subject: [PATCH 1/1] Bumped version number to 0.5.3 --- README.md | 4 ++++ gmcapsule/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f89c90b..d02df4b 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,10 @@ v0.5.2: * Fixed error in the "rewrite" module (Codeberg PR #1). +v0.5.3: + +* Enable address reuse on the server socket for unimpeded restarting (Codeberg PR #3). + ### v0.4 * Added built-in module "rewrite" that matches regular expressions against the request path and can rewrite the path or return a custom status for redirection, "Gone" messages, or other exceptional situations. diff --git a/gmcapsule/__init__.py b/gmcapsule/__init__.py index 154932d..795c913 100644 --- a/gmcapsule/__init__.py +++ b/gmcapsule/__init__.py @@ -495,7 +495,7 @@ from .gemini import Server, Cache, Context, Identity from .markdown import to_gemtext as markdown_to_gemtext -__version__ = '0.5.2' +__version__ = '0.5.3' __all__ = [ 'Config', 'Cache', 'Context', 'Identity', 'get_mime_type', 'markdown_to_gemtext' -- 2.34.1