Skip to content

Commit 08ca1d9

Browse files
authored
Merge pull request #641 from jkirk5/0.9.6_increment
Increment to 0.9.7
2 parents a9fb750 + c5d5488 commit 08ca1d9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bumpversion.cfg

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

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ body:
2121
attributes:
2222
label: Aviary Version
2323
description: What version of Aviary is being used.
24-
placeholder: "0.9.4-dev"
24+
placeholder: "0.9.6"
2525
validations:
2626
required: true
2727
- type: textarea

aviary/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.4-dev"
1+
__version__ = "0.9.6"

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
version=__version__,
3232
packages=find_packages(),
3333
install_requires=[
34-
"openmdao>=3.33.0",
34+
"openmdao>=3.36.0",
3535
"dymos>=1.8.1",
3636
"hvplot",
3737
"importlib_resources",
@@ -68,7 +68,7 @@
6868
"models/small_single_aisle/*",
6969
"models/test_aircraft/*",
7070
"visualization/assets/*",
71-
"visualization/assets/aviary_vars/*"
71+
"visualization/assets/aviary_vars/*",
7272
],
7373
f"{pkgname}.docs": [
7474
"*.py",
@@ -87,6 +87,6 @@
8787
],
8888
'openmdao_report': [
8989
'aviary_reports=aviary.interface.reports:register_custom_reports',
90-
]
91-
}
90+
],
91+
},
9292
)

0 commit comments

Comments
 (0)