Skip to content

Commit

Permalink
utils: Bump revision to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rikardn committed Dec 4, 2017
1 parent 9af47a1 commit c5f8637
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions utils/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion utils/configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion utils/test/pharmmltool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion utils/test/sotool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit c5f8637

Please sign in to comment.