summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.vc2
-rw-r--r--README.dev2
-rw-r--r--configure.ac2
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.vc b/Makefile.vc
index 1697051..be11a55 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.0.0-dev
+VERSION=1.0.0dev
######################## do not edit below this line ##########################
diff --git a/README.dev b/README.dev
index 66db2a1..a809e87 100644
--- a/README.dev
+++ b/README.dev
@@ -17,7 +17,7 @@ Creating a new release
1) Check compilation with latest gmp and mpfr, with gmp 4.3.2 and mpfr 2.4.2;
with and without "--enable-valgrind-tests --disable-shared".
2) Check the version number in configure.ac ("AC_INIT (mpc, _version_...)"),
- INSTALL, src/get_version.c, src/mpc.h (remove suffix "-dev" in
+ INSTALL, src/get_version.c, src/mpc.h (remove suffix "dev" in
MPC_VERSION_STRING) and Makefile.vc.
3) Verify that the API version in src/Makefile.am is correct.
4) Check that NEWS, BUGS and TODO are up to date, and that the minimal
diff --git a/configure.ac b/configure.ac
index bb32fac..4f8829a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT(mpc, 1.0.0-dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 1.0.0dev, mpc-discuss@lists.gforge.inria.fr)
AC_CONFIG_SRCDIR([src/mpc-impl.h])
AC_CONFIG_HEADER([config.h])
diff --git a/src/get_version.c b/src/get_version.c
index a4b39fe..1c429c0 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -44,5 +44,5 @@ mpfr_regular_p (mpfr_srcptr z)
const char *
mpc_get_version (void)
{
- return "1.0.0-dev";
+ return "1.0.0dev";
}
diff --git a/src/mpc.h b/src/mpc.h
index 6ac17db..65cce7a 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.0-dev"
+#define MPC_VERSION_STRING "1.0.0dev"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))