From 6d032686d56f32027cc673996a3a563dd223fbaa Mon Sep 17 00:00:00 2001 From: Rob Falck Date: Wed, 19 Apr 2023 13:44:31 -0400 Subject: [PATCH] bump to next dev cycle version --- .bumpversion.cfg | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- dymos/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4dece2192..05a4fd0d5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0 +current_version = 1.8.1-dev commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8b4ff8bbf..1b5d75e35 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -24,7 +24,7 @@ body: attributes: label: Dymos Version description: What version of Dymos is being used. - placeholder: "1.8.0" + placeholder: "1.8.1-dev" validations: required: true - type: textarea diff --git a/dymos/__init__.py b/dymos/__init__.py index 2b55339bd..eb122b4c0 100644 --- a/dymos/__init__.py +++ b/dymos/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.8.0' +__version__ = '1.8.1-dev' from .phase import Phase, AnalyticPhase from .transcriptions import GaussLobatto, Radau, ExplicitShooting, Analytic diff --git a/setup.py b/setup.py index 90c225c0f..146f8a6eb 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup(name='dymos', - version='1.8.0', + version='1.8.1-dev', description='Open-Source Optimization of Dynamic Multidisciplinary Systems', long_description=''' Dymos is a framework for the simulation and optimization of dynamical systems within the OpenMDAO Multidisciplinary Analysis and Optimization environment.