Skip to content

Commit

Permalink
Bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Dec 12, 2023
1 parent 5b8d54d commit 1bcc648
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

### Unreleased

## [v1.9.0]

**Release date: 2023-12-11**

### Python Versions

* Removed Python 3.7 support ([#376])
Expand Down Expand Up @@ -1436,6 +1440,7 @@ There was no CHANGELOG file prior to this release, so I don't have much
information about changes, except for
[commit messages](../../commits/v0.2).

[v1.9.0]: ../../releases/tag/v1.9.0
[v1.8.1]: ../../releases/tag/v1.8.1
[v1.8.0]: ../../releases/tag/v1.8.0
[v1.7.0]: ../../releases/tag/v1.7.0
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ For bug requests, please provide the following, if possible:
```python
>>> from delphin.__about__ import __version__
>>> __version__ # distribution version
'1.8.1'
'1.9.0'
>>> from delphin import mrs
>>> mrs.__version__ # package version
'1.8.1'
'1.9.0'
```
* Python version (e.g. 3.9, 3.10, etc.)

Expand Down
2 changes: 1 addition & 1 deletion delphin/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# the warehouse project:
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py

__version__ = '1.8.1'
__version__ = '1.9.0'
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()

__title__ = 'PyDelphin'
Expand Down

0 comments on commit 1bcc648

Please sign in to comment.