summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Zimmermann <Paul.Zimmermann@inria.fr>2017-12-12 13:21:45 +0100
committerPaul Zimmermann <Paul.Zimmermann@inria.fr>2017-12-12 13:21:45 +0100
commit608a22178bea8fe9bebab88b5bc23a914f0926da (patch)
tree0a968f777c342ce700e2ceef37737836240a7f8b
parentbeab78499d26641a4af405b99d6f83534df38d16 (diff)
downloadmpc-git-608a22178bea8fe9bebab88b5bc23a914f0926da.tar.gz
change version from 1.1 to 1.1.0
-rw-r--r--INSTALL4
-rw-r--r--Makefile.vc2
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--doc/version.texi4
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h2
7 files changed, 9 insertions, 9 deletions
diff --git a/INSTALL b/INSTALL
index f2cb235..942bf1f 100644
--- a/INSTALL
+++ b/INSTALL
@@ -19,8 +19,8 @@ This is for the impatient, for deeper explanations see the chapter
1. In the directory of the GNU MPC archive, type
- tar xzf mpc-1.1.tar.gz
- cd mpc-1.1
+ tar xzf mpc-1.1.0.tar.gz
+ cd mpc-1.1.0
./configure
make
diff --git a/Makefile.vc b/Makefile.vc
index 55f2080..aa39147 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -50,7 +50,7 @@ CPP = cl.exe
CC = cl.exe
CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs
-VERSION=1.1
+VERSION=1.1.0
######################## do not edit below this line ##########################
diff --git a/NEWS b/NEWS
index 1e41868..2fa0ad9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Changes in version 1.1:
+Changes in version 1.1.0:
- Minimally required library versions: GMP 5.0.0 and MPFR 3.0.0
- Fixed issues with MPFR 4.0.0
- New functions: mpc_cmp_abs, mpc_rootofunity
diff --git a/configure.ac b/configure.ac
index 47c17da..97220ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT(mpc, 1.1-rc1, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 1.1.0-rc1, mpc-discuss@lists.gforge.inria.fr)
AC_CONFIG_SRCDIR([src/mpc-impl.h])
AC_CONFIG_HEADER([config.h])
diff --git a/doc/version.texi b/doc/version.texi
index c966627..22da8b5 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
@set UPDATED 12 December 2017
@set UPDATED-MONTH December 2017
-@set EDITION 1.1-rc1
-@set VERSION 1.1-rc1
+@set EDITION 1.1.0-rc1
+@set VERSION 1.1.0-rc1
diff --git a/src/get_version.c b/src/get_version.c
index 6c98f61..dcbc782 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -23,5 +23,5 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
const char *
mpc_get_version (void)
{
- return "1.1";
+ return "1.1.0";
}
diff --git a/src/mpc.h b/src/mpc.h
index 5dd7a51..1f5f3f5 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -28,7 +28,7 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#define MPC_VERSION_MAJOR 1
#define MPC_VERSION_MINOR 1
#define MPC_VERSION_PATCHLEVEL 0
-#define MPC_VERSION_STRING "1.1"
+#define MPC_VERSION_STRING "1.1.0"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))