From 0dc47480f140d2b72e751f64bdffea554b58adb9 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sun, 3 Jan 2021 12:39:23 +1100 Subject: [PATCH] Release 3.1.1 --- .travis/test.sh | 2 +- INSTALL.md | 4 ++-- Makefile.in | 2 +- README.md | 2 +- changelog | 5 +++++ release.sh | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.travis/test.sh b/.travis/test.sh index 3e2ce74..a76cb8a 100755 --- a/.travis/test.sh +++ b/.travis/test.sh @@ -14,6 +14,6 @@ if ! cmp .travis/test.answer test.output ; then exit 1 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 fi diff --git a/INSTALL.md b/INSTALL.md index 4b154ae..8abe977 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,12 +6,12 @@ standard POSIX syscalls so that it should work pretty much on any \*nix system. 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: ``` -$ 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 $ ./configure --listener=somelistener $ make diff --git a/Makefile.in b/Makefile.in index 725e5f0..3ab1bd1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ NAME = gophernicus PACKAGE = $(NAME) BINARY = $(NAME) -VERSION = 3.1 +VERSION = 3.1.1 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 diff --git a/README.md b/README.md index c44fd59..6334f6e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Gophernicus 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* diff --git a/changelog b/changelog index 7359b9c..72acc01 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +3.1.1 +===== + + * Fix various build system issues + 3.1 === diff --git a/release.sh b/release.sh index 87a12b1..fc8807c 100755 --- a/release.sh +++ b/release.sh @@ -1,7 +1,7 @@ #!/bin/sh set -ex -RELEASE=3.1 +RELEASE=3.1.1 # Create release branch git branch "v${RELEASE}"