aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rwxr-xr-xconfigure2
-rw-r--r--gmid.conf.54
-rw-r--r--site/Makefile2
-rw-r--r--site/changelog.gmi6
5 files changed, 18 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 351711d..4606a84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-08-23 Omar Polo <op@omarpolo.com>
+
+ * configure (VERSION): release 2.1.1
+
+2024-08-23 Omar Polo <op@omarpolo.com>
+
+ * work around comically tiny HOST_NAME_MAX on glibc-based systems.
+
2024-08-18 Christoph Liebender <cristoph.liebender@posteo.de>
* fcgi.c (fcgi_req): send the port, not the hostname, as SERVER_PORT.
diff --git a/configure b/configure
index 2c98963..6866aa6 100755
--- a/configure
+++ b/configure
@@ -19,7 +19,7 @@
set -e
RELEASE=no
-VERSION=2.1-current
+VERSION=2.1.1
usage()
{
diff --git a/gmid.conf.5 b/gmid.conf.5
index 57a6c4e..092a6c0 100644
--- a/gmid.conf.5
+++ b/gmid.conf.5
@@ -11,7 +11,7 @@
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-.Dd August 3, 2024
+.Dd August 25, 2024
.Dt GMID.CONF 5
.Os
.Sh NAME
@@ -384,7 +384,7 @@ The port the server is listening on.
.Dq GEMINI
.It Ev SERVER_SOFTWARE
The name and version of the server, i.e.
-.Dq gmid/2.1
+.Dq gmid/2.1.1
.It Ev REMOTE_USER
The subject of the client certificate if provided, otherwise unset.
.It Ev TLS_CLIENT_ISSUER
diff --git a/site/Makefile b/site/Makefile
index 9e1cc9d..3b6e372 100644
--- a/site/Makefile
+++ b/site/Makefile
@@ -21,7 +21,7 @@ REPOLOGY_URL = https://repology.org/project/gmid/versions
SUBST = ./subst GITHUB=https://github.com/omar-polo/gmid \
SITE=https://ftp.omarpolo.com \
- VERS=2.1 \
+ VERS=2.1.1 \
PUBKEY=gmid-2.1.pub \
TREE=https://github.com/omar-polo/gmid/blob/master
diff --git a/site/changelog.gmi b/site/changelog.gmi
index dd8df99..7afbf72 100644
--- a/site/changelog.gmi
+++ b/site/changelog.gmi
@@ -1,5 +1,11 @@
# change log
+## 2024/08/25 - 2.1.1 “From Mars To Sirius” bugfix release
+
+* fix getprogname() check in the configure script
+* fix fastcgi parameter SERVER_PORT; by Christoph Liebender, thank you!
+* work around comically tiny HOST_NAME_MAX on glibc-based system; reported by Anna “CyberTailor”, thanks!
+
## 2024/08/03 - 2.1 “From Mars To Sirius”
### New Features