From 6b48528fb032592be9ca912136aff2045a95248f Mon Sep 17 00:00:00 2001 From: swryan <881430+swryan@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:56:19 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.12.0=20=E2=86=92=201.12.1-d?= =?UTF-8?q?ev=20(#1113)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: swryan --- .bumpversion.cfg | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- dymos/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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