Commit Diff
Commit:
a14b9f779f14edee7c22e12f1ad8a4ba2d3134df
Date:
Sun Jan 30 13:35:45 2022
UTC
Message
prepare 1.8 release
--- ChangeLog
+++ ChangeLog
@@ -1,4 +1,6 @@
2022-01-30 Omar Polo <op@omarpolo.com>
+
+ * configure (VERSION): 1.8 “Lightbulb Sun” tagged
* proxy.c (proxy_setup_tls): allow to specify a custom hostname as SNI for the TLS handshake with the proxied host.
--- configure
+++ configure
@@ -34,7 +34,7 @@ VERSION=1.8-dev
# default settings: initialize all vars here such that nothing is
# leaked from the environment except for CC, CFLAGS and LDFLAGS
-VERSION=1.8-dev
+VERSION=1.8
CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | make ${MAKE_FLAGS} -sf -`
--- gmid.1
+++ gmid.1
@@ -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 $Mdocdate: January 02 2022$
+.Dd $Mdocdate: January 30 2022$
.Dt GMID 1
.Os
.Sh NAME
@@ -558,7 +558,7 @@ The name and version of the server, i.e.
.Dq GEMINI
.It Ev SERVER_SOFTWARE
The name and version of the server, i.e.
-.Dq gmid/1.7.3
+.Dq gmid/1.8
.It Ev AUTH_TYPE
The string "Certificate" if the client used a certificate, otherwise
unset.
--- site/Makefile
+++ site/Makefile
@@ -15,9 +15,9 @@ SUBST = ./subst GITHUB=https://github.com/omar-polo/g
REPOLOGY_URL = https://repology.org/project/gmid/versions
SUBST = ./subst GITHUB=https://github.com/omar-polo/gmid \
- VERS=1.7.5 \
- CURV=1.7 \
- NEXTV=1.8 \
+ VERS=1.8 \
+ CURV=1.8 \
+ NEXTV=1.9 \
TREE=https://git.omarpolo.com/gmid/tree
SUBST_GEM = ${SUBST} MANEXT=txt EXT=gmi REPOLOGY=${REPOLOGY_URL}
--- site/index.gmi
+++ site/index.gmi
@@ -63,11 +63,14 @@ $ signify -C -p gmid-1.7.pub -x SHA256.sig
To verify the signatures with signify(1)
```Example of how to verify the signature with signify
-$ signify -C -p gmid-1.7.pub -x SHA256.sig
+% signify -C -p gmid-1.8.pub -x SHA256.sig
Signature Verified
-gmid-1.7.pub: OK
-gmid-1.7.5.tar.gz: OK
+gg.linux.aarch64: OK
+gg.linux.amd64: OK
+gmid-1.8-binaries.tar.gz: OK
gmid-1.8.pub: OK
+gmid-1.8.tar.gz: OK
+gmid-1.9.pub: OK
gmid.linux.aarch64: OK
gmid.linux.amd64: OK
```
Omar Polo