summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2014-01-15 12:16:31 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2014-01-15 12:16:31 +0000
commit152cd6f52be9d5a1439120e44861cb9cf23f7040 (patch)
tree9bc31e8753ccc4d476a8cbb543a06f301d6c8931
parent116e71300f59cf299ba206c5fcab5c70f61fe62d (diff)
downloadmpc-1.0.2.tar.gz
Release 1.0.2.1.0.2
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/tags/1.0.2@1409 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--Makefile.vc4
-rw-r--r--NEWS8
-rw-r--r--configure.ac4
-rw-r--r--doc/version.texi8
-rw-r--r--src/get_version.c4
-rw-r--r--src/mpc.h4
6 files changed, 16 insertions, 16 deletions
diff --git a/Makefile.vc b/Makefile.vc
index 1e45a38..e8640a0 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -1,6 +1,6 @@
# Makefile for the MPC library (Windows version).
#
-# Copyright (C) INRIA - CNRS, 2002, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
+# Copyright (C) INRIA - CNRS, 2002, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2014
#
# This file is part of the MPC Library.
#
@@ -50,7 +50,7 @@ CPP = cl.exe
CC = cl.exe
CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs
-VERSION=1.0.2dev
+VERSION=1.0.2
######################## do not edit below this line ##########################
diff --git a/NEWS b/NEWS
index 0aab447..dbe390d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,8 @@
Changes in version 1.0.2:
- - Fixed mpc_atan, mpc_atanh for (+-0, +-1), see
- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57994#c7
- - Fixed mpc_log10 for purely imaginary argument, see
- http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-September/001208.html
+ - Fixed mpc_atan, mpc_atanh for (+-0, +-1), see
+ http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57994#c7
+ - Fixed mpc_log10 for purely imaginary argument, see
+ http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-September/001208.html
Changes in version 1.0.1:
- Switched to automake 1.11.6, see
diff --git a/configure.ac b/configure.ac
index 568e7f0..f81397a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# Copyright (C) 2008, 2009, 2010, 2011, 2012 INRIA
+# Copyright (C) 2008, 2009, 2010, 2011, 2012, 2014 INRIA
#
# This file is part of GNU MPC.
#
@@ -20,7 +20,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT(mpc, 1.0.2dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 1.0.2, 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 b9085b7..200ab0d 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 6 September 2012
-@set UPDATED-MONTH September 2012
-@set EDITION 1.0.1
-@set VERSION 1.0.1
+@set UPDATED 15 January 2014
+@set UPDATED-MONTH January 2014
+@set EDITION 1.0.2
+@set VERSION 1.0.2
diff --git a/src/get_version.c b/src/get_version.c
index 235dc73..1bf77f0 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -1,6 +1,6 @@
/* mpc_get_version -- MPC version
-Copyright (C) 2008, 2009, 2010, 2011, 2012 INRIA
+Copyright (C) 2008, 2009, 2010, 2011, 2012, 2014 INRIA
This file is part of GNU MPC.
@@ -44,5 +44,5 @@ mpfr_regular_p (mpfr_srcptr z)
const char *
mpc_get_version (void)
{
- return "1.0.2dev";
+ return "1.0.2";
}
diff --git a/src/mpc.h b/src/mpc.h
index cfcd083..1607cac 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -1,6 +1,6 @@
/* mpc.h -- Include file for mpc.
-Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012 INRIA
+Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2014 INRIA
This file is part of GNU MPC.
@@ -33,7 +33,7 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#define MPC_VERSION_MAJOR 1
#define MPC_VERSION_MINOR 0
#define MPC_VERSION_PATCHLEVEL 2
-#define MPC_VERSION_STRING "1.0.2dev"
+#define MPC_VERSION_STRING "1.0.2"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))