From 72fe66d91ce6f1d2365730102c439c8b4b41738b Mon Sep 17 00:00:00 2001 From: Randy LeVeque Date: Sun, 12 Dec 2021 09:03:08 -0800 Subject: [PATCH 1/2] v5.8.2 release candidate --- amrclaw | 2 +- clawutil | 2 +- pyclaw | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/amrclaw b/amrclaw index 9653a802..d7acfe4a 160000 --- a/amrclaw +++ b/amrclaw @@ -1 +1 @@ -Subproject commit 9653a802ea2e0f4a547999a1eacafc12c8ce75f2 +Subproject commit d7acfe4a71b2515778b134540a015923ce77a3cd diff --git a/clawutil b/clawutil index 116ffb79..7c2cca5e 160000 --- a/clawutil +++ b/clawutil @@ -1 +1 @@ -Subproject commit 116ffb792e889fbf0854d7ac599657039d7b1f3e +Subproject commit 7c2cca5e8849945cb579719276d511b2dd37431f diff --git a/pyclaw b/pyclaw index 40ec4957..0109c06c 160000 --- a/pyclaw +++ b/pyclaw @@ -1 +1 @@ -Subproject commit 40ec495738749db2654291477a282fe99f3017ad +Subproject commit 0109c06c4630ee9a0c8fd5fec531c42d4f43c407 From e26254ac05d6dafdbcfa7665b0a6970e88b91b8a Mon Sep 17 00:00:00 2001 From: Randy LeVeque Date: Sun, 12 Dec 2021 09:49:52 -0800 Subject: [PATCH 2/2] change version number in setup and __init__ --- clawpack/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clawpack/__init__.py b/clawpack/__init__.py index 0943cfbd..9d9499fc 100644 --- a/clawpack/__init__.py +++ b/clawpack/__init__.py @@ -21,4 +21,4 @@ if _os.path.isdir(_sdir)) del _root, _path -__version__ = '5.8.1' # must also be changed in setup.py +__version__ = '5.8.2' # must also be changed in setup.py diff --git a/setup.py b/setup.py index 338315be..c4efe082 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ # version must also be changed in clawpack/__init__.py MAJOR = 5 MINOR = 8 -MICRO = 1 +MICRO = 2 TYPE = '' VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, TYPE)