diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 09d723c23..c229e0824 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.12.0 +current_version = 1.12.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 b5798c2d0..4122baef1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -23,7 +23,7 @@ body: attributes: label: Dymos Version description: What version of Dymos is being used. - placeholder: "1.12.0" + placeholder: "1.12.1-dev" validations: required: true - type: textarea diff --git a/dymos/__init__.py b/dymos/__init__.py index a78b34705..cbb6bb70c 100644 --- a/dymos/__init__.py +++ b/dymos/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.12.0' +__version__ = '1.12.1-dev' from .phase import Phase, AnalyticPhase