1
0
Fork 0

Release 3.1.1

This commit is contained in:
fosslinux 2021-01-03 12:39:23 +11:00
parent ca567a8cb7
commit 0dc47480f1
6 changed files with 11 additions and 6 deletions

View File

@ -14,6 +14,6 @@ if ! cmp .travis/test.answer test.output ; then
exit 1 exit 1
fi fi
if ! gophernicus -v | grep -q 'Gophernicus/3.1 "Dungeon Edition"' ; then if ! gophernicus -v | grep -q 'Gophernicus/3.1.1 "Dungeon Edition"' ; then
exit 1 exit 1
fi fi

View File

@ -6,12 +6,12 @@ standard POSIX syscalls so that it should work pretty much on
any \*nix system. any \*nix system.
Please make sure that you checkout to the correct version you want. Please make sure that you checkout to the correct version you want.
Currently, you most likely want version 3.1. Currently, you most likely want version 3.1.1.
To compile and install run: To compile and install run:
``` ```
$ git clone -b 3.1 https://github.com/gophernicus/gophernicus.git $ git clone -b 3.1.1 https://github.com/gophernicus/gophernicus.git
$ cd gophernicus $ cd gophernicus
$ ./configure --listener=somelistener $ ./configure --listener=somelistener
$ make $ make

View File

@ -1,7 +1,7 @@
NAME = gophernicus NAME = gophernicus
PACKAGE = $(NAME) PACKAGE = $(NAME)
BINARY = $(NAME) BINARY = $(NAME)
VERSION = 3.1 VERSION = 3.1.1
CODENAME = Dungeon Edition CODENAME = Dungeon Edition
SOURCES = src/$(NAME).c src/file.c src/menu.c src/string.c src/platform.c src/session.c src/options.c src/log.c SOURCES = src/$(NAME).c src/file.c src/menu.c src/string.c src/platform.c src/session.c src/options.c src/log.c

View File

@ -1,7 +1,7 @@
# Gophernicus # Gophernicus
This release: Version DEVEL This release: Version DEVEL
NOTE: The master branch is rolling Development! DO NOT USE unless you want fiery dragons! (you probably want to `git checkout 3.1`) NOTE: The master branch is rolling Development! DO NOT USE unless you want fiery dragons! (you probably want to `git checkout 3.1.1`)
*Copyright (c) 2009-2018 Kim Holviala* *Copyright (c) 2009-2018 Kim Holviala*

View File

@ -1,3 +1,8 @@
3.1.1
=====
* Fix various build system issues
3.1 3.1
=== ===

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
set -ex set -ex
RELEASE=3.1 RELEASE=3.1.1
# Create release branch # Create release branch
git branch "v${RELEASE}" git branch "v${RELEASE}"