Skip to content

Commit

Permalink
Merge pull request #41 from swryan/v0.9.1
Browse files Browse the repository at this point in the history
Increment version to 0.9.1
  • Loading branch information
jdgratz10 authored Jan 8, 2024
2 parents f9bcfff + 3a6c422 commit ecfbada
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[bumpversion]
current_version = 0.9.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:file:aviary/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:.github/ISSUE_TEMPLATE/bug_report.yml]
search = placeholder: "{current_version}"
replace = placeholder: "{new_version}"

[bumpversion:part:release]
optional_value = rel
values =
dev
rel
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body:
attributes:
label: Aviary Version
description: What version of Aviary is being used.
placeholder: "0.9.0-dev"
placeholder: "0.9.1"
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion aviary/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.0"
__version__ = "0.9.1"

0 comments on commit ecfbada

Please sign in to comment.