summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2020-01-06 11:56:49 -0800
committerPer Bothner <per@bothner.com>2020-01-06 11:56:49 -0800
commit1b4ba1907e9760e7771e3575b278666aed882316 (patch)
treebed3bd7273f1362bcdfc38dcefaebad78f35f361
parentc9e64e26b8544ce2da472385d07df639ae6e8247 (diff)
Update version number to 3.1 and copyright year to 2020.3.1
-rw-r--r--ChangeLog2
-rw-r--r--bin/configure.ac2
-rw-r--r--build.xml2
-rw-r--r--configure.ac2
-rw-r--r--doc/news.texi6
-rw-r--r--kawa/ChangeLog4
-rw-r--r--kawa/repl.java2
7 files changed, 14 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index e03026dbf..5da4b70bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2019-12-31 Per Bothner <per@bothner.com>
+ * configure.in (AC_INIT): Set version to 3.1.
+
* Makefile.am (EXTRA_DIST): Some files are now in build-aux.
* source-list (GNU_LISTS_JSOURCES): Add GVector.java, belatedly.
diff --git a/bin/configure.ac b/bin/configure.ac
index e4dfee355..b9c985d27 100644
--- a/bin/configure.ac
+++ b/bin/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([kawa-bin],[3.0])
+AC_INIT([kawa-bin],[3.1])
AC_CONFIG_AUX_DIR([../build-aux])
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE
diff --git a/build.xml b/build.xml
index 902fb9b12..289cd45cf 100644
--- a/build.xml
+++ b/build.xml
@@ -7,7 +7,7 @@
<!-- Give the user a chance to override the defaults. -->
<property file="build.properties"/>
- <property name="version.release" value="3.0"/>
+ <property name="version.release" value="3.1"/>
<property name="version.local" value=""/>
<property name="version" value="${version.release}${version.local}"/>
diff --git a/configure.ac b/configure.ac
index 1f591f48b..33078695b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
qdnl Process this with autoconf to create configure
-AC_INIT([kawa],[3.0]) dnl Also update bin/configure.ac and build.xml.
+AC_INIT([kawa],[3.1]) dnl Also update bin/configure.ac and build.xml.
AC_CONFIG_SRCDIR([doc/kawa.texi])
AC_CONFIG_AUX_DIR([build-aux])
diff --git a/doc/news.texi b/doc/news.texi
index 5d043cc25..3b4ff70d4 100644
--- a/doc/news.texi
+++ b/doc/news.texi
@@ -4,8 +4,10 @@ most recent changes first.
See also the list of @uref{../qexo/news.html,Qexo (XQuery)-specific
changes}.
-@subheading In Git repository (master branch) since last release
-@anchor{#in-git-repository-since-last-release}
+@c @subheading In Git repository (master branch) since last release
+@c @anchor{#in-git-repository-since-last-release}
+
+@subheading Kawa 3.1 (January 6, 2020)
@itemize
@item
diff --git a/kawa/ChangeLog b/kawa/ChangeLog
index 873025eb6..920a65564 100644
--- a/kawa/ChangeLog
+++ b/kawa/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-05 Per Bothner <per@bothner.com>
+
+ * repl.java: Update Copyright year printed by --version.
+
2019-12-30 Per Bothner <per@bothner.com>
* DomTermServer.java: New file extracted from DomTermBackend.java.
diff --git a/kawa/repl.java b/kawa/repl.java
index 80ab6ac36..a7b7a9bf9 100644
--- a/kawa/repl.java
+++ b/kawa/repl.java
@@ -639,7 +639,7 @@ public class repl extends Procedure0or1 {
System.out.print("Kawa ");
System.out.print(Version.getVersion());
System.out.println();
- System.out.println("Copyright (C) 2019 Per Bothner");
+ System.out.println("Copyright (C) 2020 Per Bothner");
something_done = true;
} else if (arg.startsWith("-D")) {
int eq = arg.indexOf('=');