From c5f863716cc49fe43e31acdcc6a9df5f6b6ba1fa Mon Sep 17 00:00:00 2001 From: Rikard Nordgren Date: Mon, 4 Dec 2017 22:54:01 +0100 Subject: [PATCH] utils: Bump revision to 1.0.0 --- utils/Makefile.am | 4 ++-- utils/configure.ac | 2 +- utils/test/pharmmltool.py | 2 +- utils/test/sotool.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/Makefile.am b/utils/Makefile.am index 09b6aca..b813642 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -62,8 +62,8 @@ PY_LOG_COMPILER = python3 WIN_RELEASE_PACKAGE = ${PACKAGE_NAME}-${PACKAGE_VERSION}-windows-x64 .PHONY: winrelease winrelease: - rm -f pharmmlutils-0.5.0-windows-x64.zip - rm pharmmlutils-0.5.0-windows-x64 -rf + rm -f pharmmlutils-1.0.0-windows-x64.zip + rm pharmmlutils-1.0.0-windows-x64 -rf mkdir -p ${WIN_RELEASE_PACKAGE} cp .libs/pharmmltool.exe ${WIN_RELEASE_PACKAGE} cp .libs/sotool.exe ${WIN_RELEASE_PACKAGE} diff --git a/utils/configure.ac b/utils/configure.ac index a637d45..774aca2 100644 --- a/utils/configure.ac +++ b/utils/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.61]) -AC_INIT(pharmmlutils, 0.5.0) +AC_INIT(pharmmlutils, 1.0.0) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIRS([m4]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/utils/test/pharmmltool.py b/utils/test/pharmmltool.py index bbee919..b7d473a 100644 --- a/utils/test/pharmmltool.py +++ b/utils/test/pharmmltool.py @@ -27,7 +27,7 @@ def test_usage(self): def test_version(self): output = subprocess.run([exe_path('pharmmltool'), '--version'], stdout=subprocess.PIPE) l = output.stdout.decode('UTF-8').split("\n") - m = re.match("pharmmltool \d+\.\d+$", l[0]) + m = re.match("pharmmltool \d+\.\d+.\d+$", l[0]) self.assertTrue(m) def test_pharmml_version(self): diff --git a/utils/test/sotool.py b/utils/test/sotool.py index b6459c4..cc72e6a 100644 --- a/utils/test/sotool.py +++ b/utils/test/sotool.py @@ -27,7 +27,7 @@ def test_usage(self): def test_version(self): output = subprocess.run([exe_path('sotool'), '--version'], stdout=subprocess.PIPE) l = output.stdout.decode('UTF-8').split("\n") - m = re.match("sotool \d+\.\d+$", l[0]) + m = re.match("sotool \d+\.\d+.\d+$", l[0]) self.assertTrue(m) def test_so_version(self):