summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-07-07 11:50:26 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-07-07 11:50:26 +0000
commit96672b7b2c2b31466a0f576d5c5a398e6cba8f81 (patch)
tree9ece585eadd3f5af3cd70cd60b1dd12a048b411e
parent65cea3c888cabed8867bf72ec41194b2727375ee (diff)
downloadmpc-96672b7b2c2b31466a0f576d5c5a398e6cba8f81.tar.gz
preparing 1.0.0rc1
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1239 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--BUGS2
-rw-r--r--INSTALL6
-rw-r--r--Makefile.vc4
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--doc/version.texi8
-rw-r--r--src/get_version.c4
-rw-r--r--src/mpc.h2
8 files changed, 15 insertions, 15 deletions
diff --git a/BUGS b/BUGS
index 14ef613..80e2017 100644
--- a/BUGS
+++ b/BUGS
@@ -12,4 +12,4 @@
Currently, the following functions have been rewritten to solve these
problems:
-mul, norm
+mul, norm, sqr
diff --git a/INSTALL b/INSTALL
index aa82a48..e8e067b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011
+Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
@@ -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.0.0.tar.gz
- cd mpc-1.0.0
+ tar xzf mpc-1.0.0rc1.tar.gz
+ cd mpc-1.0.0rc1
./configure
make
diff --git a/Makefile.vc b/Makefile.vc
index 8998dd3..7269f76 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
+# Copyright (C) INRIA - CNRS, 2002, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
#
# 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.0dev
+VERSION=1.0.0rc1
######################## do not edit below this line ##########################
diff --git a/NEWS b/NEWS
index 5127113..a56d4ce 100644
--- a/NEWS
+++ b/NEWS
@@ -17,7 +17,7 @@ Changes in version 1.0:
or underflows during the computation
- asin, proj, sqr: Wrong result when input variable has infinite part and
equals output variable is corrected.
- - fr_sub: Wrong return value for imaginary part.
+ - fr_sub: Wrong return value for imaginary part is corrected.
Changes in version 0.9:
- New functions:
diff --git a/configure.ac b/configure.ac
index 374ba91..4ae422f 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.0.0dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 1.0.0rc1, 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 087e805..1a0de85 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 10 January 2012
-@set UPDATED-MONTH January 2012
-@set EDITION 1.0.0dev
-@set VERSION 1.0.0dev
+@set UPDATED 7 July 2012
+@set UPDATED-MONTH July 2012
+@set EDITION 1.0.0rc1
+@set VERSION 1.0.0rc1
diff --git a/src/get_version.c b/src/get_version.c
index 1c429c0..0f31869 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 INRIA
+Copyright (C) 2008, 2009, 2010, 2011, 2012 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.0dev";
+ return "1.0.0rc1";
}
diff --git a/src/mpc.h b/src/mpc.h
index 60ffaee..aed5125 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -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 0
-#define MPC_VERSION_STRING "1.0.0dev"
+#define MPC_VERSION_STRING "1.0.0rc1"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))