summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-11-18 13:52:21 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-11-18 13:52:21 +0000
commit2474893075e5f5e2099ac8dde6c6b53918c11eb1 (patch)
treea744d41bfe2296304b45caf3f8214d4838a4dc06
parent5826bc5760ffe90ba12229bd809c1a120bc2fd0e (diff)
downloadmpc-2474893075e5f5e2099ac8dde6c6b53918c11eb1.tar.gz
ready for working on the next release!
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@339 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--INSTALL4
-rw-r--r--NEWS3
-rw-r--r--README.dev2
-rw-r--r--configure.ac2
-rw-r--r--src/mpc.h6
5 files changed, 10 insertions, 7 deletions
diff --git a/INSTALL b/INSTALL
index efe4340..f28b68b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -10,8 +10,8 @@ in the Texinfo documentation (type 'info mpc.info').
1. In the directory of the MPC archive, type
- tar xzf mpc-0.5.1.tar.gz
- cd mpc-0.5.1
+ tar xzf mpc-0.6.tar.gz
+ cd mpc-0.6
./configure
make
diff --git a/NEWS b/NEWS
index c745de0..659fb6d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+Recent changes:
+
+
Changes in version 0.5.1:
- New functions:
- mpc_set_fr_fr
diff --git a/README.dev b/README.dev
index 699bf39..6191674 100644
--- a/README.dev
+++ b/README.dev
@@ -26,5 +26,5 @@ Creating a new release
makeinfo --html --no-split mpc.texi
and the resulting mpc.html is copied to content_html.php.
6) After the release, update the version number in configure.ac, INSTALL
- and mpc.h, and reactivate the -Werror option in configure.ac.
+ and src/mpc.h, and reactivate the -Werror option in configure.ac.
7) Commit the changes to svn.
diff --git a/configure.ac b/configure.ac
index 776fb26..f508cbe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ MA 02111-1307, USA. */
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT(mpc, 0.5.1, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.6, mpc-discuss@lists.gforge.inria.fr)
AC_CONFIG_SRCDIR([src/mpc-impl.h])
AC_CONFIG_HEADER([config.h])
diff --git a/src/mpc.h b/src/mpc.h
index 5eec3c8..885fe50 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -27,9 +27,9 @@ MA 02111-1307, USA. */
/* Define MPC version number */
#define MPC_VERSION_MAJOR 0
-#define MPC_VERSION_MINOR 5
-#define MPC_VERSION_PATCHLEVEL 1
-#define MPC_VERSION_STRING "0.5.1"
+#define MPC_VERSION_MINOR 6
+#define MPC_VERSION_PATCHLEVEL 0
+#define MPC_VERSION_STRING "0.6-dev"
/* Check if stdio.h is included */
#if defined (_GMP_H_HAVE_FILE)