Skip to content

Commit 75d0311

Browse files
authored
Release notes for 1.6.1 (#860)
* added release notes for 1.6.1 * bump version --> 1.6.1
1 parent 981f2e4 commit 75d0311

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.6.1-dev
2+
current_version = 1.6.1
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ body:
2424
attributes:
2525
label: Dymos Version
2626
description: What version of Dymos is being used.
27-
placeholder: "1.6.1-dev"
27+
placeholder: "1.6.1"
2828
validations:
2929
required: true
3030
- type: textarea

dymos/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.6.1-dev'
1+
__version__ = '1.6.1'
22

33
from .phase import Phase, AnalyticPhase
44
from .transcriptions import GaussLobatto, Radau, ExplicitShooting, Analytic

release_notes.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
*******************************
2+
# Release Notes for Dymos 1.6.1
3+
4+
November 14, 2022
5+
6+
Version 1.6.1 of Dymos addresses bugs described below.
7+
8+
This release also includes the start of an implementation to allow calculated expressions to be used as
9+
constraints and timeseries outputs, but this feature is still undergoing development and documentation.
10+
11+
## Backwards Incompatible API Changes & Deprecations
12+
13+
None
14+
15+
## Enhancements
16+
17+
* Added the ability to include calculation expressions in timeseries outputs. This feature is still undergoing development and is not supported as of this release. [#846](https://github.com/OpenMDAO/dymos/pull/846)
18+
* Added ability to specify constraint metadata (scaler, ref, linear, etc) when calling `link_phases`. [#858](https://github.com/OpenMDAO/dymos/pull/858)
19+
20+
## Bug Fixes
21+
22+
* Fixed a bug in polynomial controls and rates were included in timeseries outputs for ExplicitShooting. [#840](https://github.com/OpenMDAO/dymos/pull/840)
23+
* Fixed an interpolation issue where scipy now requires unique x-axis values. [#842](https://github.com/OpenMDAO/dymos/pull/842)
24+
* Added a better error message when time units are `None` and state rate introspection fails to find valid state units based on state rate units. [#851](https://github.com/OpenMDAO/dymos/pull/851)
25+
* Fixed an issue that was causing states not to show up in the timeseries outputs for AnalyticPhase. [#853](https://github.com/OpenMDAO/dymos/pull/853)
26+
* Fixed a bug that was causing errors when phase linkages involved parameters. [#858](https://github.com/OpenMDAO/dymos/pull/858)
27+
28+
## Miscellaneous
29+
30+
* Various github workflow issues addressed due to changes in dependencies. [#844](https://github.com/OpenMDAO/dymos/pull/844) [#849](https://github.com/OpenMDAO/dymos/pull/849) [#854](https://github.com/OpenMDAO/dymos/pull/854)
31+
132
*******************************
233
# Release Notes for Dymos 1.6.0
334

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
setup(name='dymos',
42-
version='1.6.1-dev',
42+
version='1.6.1',
4343
description='Open-Source Optimization of Dynamic Multidisciplinary Systems',
4444
long_description='''
4545
Dymos is a framework for the simulation and optimization of dynamical systems within the OpenMDAO Multidisciplinary Analysis and Optimization environment.

0 commit comments

Comments
 (0)