From 0c35babd6ba7a8c3fba152d8b15c0d6b06bcadbc Mon Sep 17 00:00:00 2001 From: Stephen Roberts Date: Sun, 9 Jul 2023 20:44:05 +0930 Subject: [PATCH] change version to 3.2.0dev --- anuga/revision.py | 6 +++--- create_revision_file.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/anuga/revision.py b/anuga/revision.py index 2847cc050..882d4413e 100644 --- a/anuga/revision.py +++ b/anuga/revision.py @@ -4,6 +4,6 @@ The file is automatically generated and should not be modified manually. """ -__git_sha__ = "34133374330cf2ee37c802098ceaaa58f9637e97" -__git_committed_datetime__ = "2022-06-23 11:57:43+09:18" -__version__ = "3.1.9" +__git_sha__ = "b533cb128b798f8bdb4b854e0ab132aaff985e36" +__git_committed_datetime__ = "2023-06-01 17:25:15+10:00" +__version__ = "3.2.0dev" diff --git a/create_revision_file.py b/create_revision_file.py index 2a02c62f3..27a3014d1 100644 --- a/create_revision_file.py +++ b/create_revision_file.py @@ -22,7 +22,7 @@ for line in infile: match = re.match(r'VERSION =', line) if match != None: - VERSION = re.findall('\d.\d.\d',line)[0] + VERSION = re.findall('\d.\d.\ddev|\d.\d.\d',line)[0] destination_path='anuga' diff --git a/setup.py b/setup.py index ab7854348..aa7b0f9c0 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ URL = "https://github.com/anuga-community/anuga_core" LICENSE = 'GPL' DOWNLOAD_URL = "http://sourceforge.net/projects/anuga/" -VERSION = '3.1.9' +VERSION = '3.2.0dev' #===============================================================================