Skip to content

Commit

Permalink
Release notes for 1.9.1 (#995)
Browse files Browse the repository at this point in the history
* Release notes for 1.9.1

* bump version to 1.9.1
  • Loading branch information
robfalck authored Sep 14, 2023
1 parent 80f8948 commit 5801ff6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.1-dev
current_version = 1.9.1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ body:
attributes:
label: Dymos Version
description: What version of Dymos is being used.
placeholder: "1.9.1-dev"
placeholder: "1.9.1"
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion dymos/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.9.1-dev'
__version__ = '1.9.1'

from .phase import Phase, AnalyticPhase
from .transcriptions import GaussLobatto, Radau, ExplicitShooting, Analytic
Expand Down
26 changes: 26 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
*******************************
# Release Notes for Dymos 1.9.1

September 14, 2023

Dymos 1.9.1 fixes a few bugs introduced in 1.9.0.
For problems in which phases are directly connected, the total derivatives
could be wrong in some cases due to the lack of a linear solver covering
the initial value defect. Also, control rates were showing up in timeseries
outputs by default. Now, as expected, they must be requested explicitly
as a timeseries output.

## Backwards Incompatible API Changes & Deprecations
- None
-
## Enhancements
- None

## Bug Fixes
- Added linear solver for cases where states solved via optimizer have input_initial=True. [#991](https://github.com/OpenMDAO/dymos/pull/991)
- Fixed an issue where control rate values are showing up in timeseries outputs by default. [#987](https://github.com/OpenMDAO/dymos/pull/987)

## Miscellaneous
- Minor tweaks to the github issue templates. [#985](https://github.com/OpenMDAO/dymos/pull/985) [#993](https://github.com/OpenMDAO/dymos/pull/993)


*******************************
# Release Notes for Dymos 1.9.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@


setup(name='dymos',
version='1.9.1-dev',
version='1.9.1',
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.
Expand Down

0 comments on commit 5801ff6

Please sign in to comment.