Skip to content

Commit 3792bed

Browse files
committed
New release
1 parent 640d5d5 commit 3792bed

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
Changes from 1.17.10 to 1.17.11
4+
===============================
5+
6+
* Fix empty responses when served by reverse proxies, ref #175.
7+
* Fix a security issues related to paths like `/%2fadmin/`.
8+
* Update dependencies.
9+
* Update documentation.
10+
311
Changes from 1.17.9 to 1.17.10
412
==============================
513

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ And then just run it with `algernon server.lua`.
15601560
General information
15611561
-------------------
15621562

1563-
* Version: 1.17.10
1563+
* Version: 1.17.11
15641564
* License: BSD-3
15651565
* Alexander F. Rødseth <xyproto@archlinux.org>
15661566

algernon.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" -*-Nroff-*-
22
.\"
3-
.TH "algernon" 1 "04 Jul 2026" "" ""
3+
.TH "algernon" 1 "26 Jul 2026" "" ""
44
.SH NAME
55
algernon \- web server
66
.sp
@@ -153,7 +153,7 @@ or database connections:
153153
.BR caddy (1)
154154
.BR nginx (1)
155155
.SH VERSION
156-
1.17.10
156+
1.17.11
157157
.SH AUTHOR
158158
.B algernon
159159
was written by Alexander F. Rødseth <xyproto@archlinux.org>

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
const (
12-
versionString = "Algernon 1.17.10"
12+
versionString = "Algernon 1.17.11"
1313
description = "Web Server"
1414
)
1515

version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77

88
# The current version goes here, as the default value
9-
VERSION=${1:-'1.17.10'}
9+
VERSION=${1:-'1.17.11'}
1010

1111
if [ -z "$1" ]; then
1212
echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"

0 commit comments

Comments
 (0)