Skip to content

Commit 1bcc648

Browse files
committed
Bump version to 1.9.0
1 parent 5b8d54d commit 1bcc648

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### Unreleased
44

5+
## [v1.9.0]
6+
7+
**Release date: 2023-12-11**
8+
59
### Python Versions
610

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

1443+
[v1.9.0]: ../../releases/tag/v1.9.0
14391444
[v1.8.1]: ../../releases/tag/v1.8.1
14401445
[v1.8.0]: ../../releases/tag/v1.8.0
14411446
[v1.7.0]: ../../releases/tag/v1.7.0

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ For bug requests, please provide the following, if possible:
2727
```python
2828
>>> from delphin.__about__ import __version__
2929
>>> __version__ # distribution version
30-
'1.8.1'
30+
'1.9.0'
3131
>>> from delphin import mrs
3232
>>> mrs.__version__ # package version
33-
'1.8.1'
33+
'1.9.0'
3434
```
3535
* Python version (e.g. 3.9, 3.10, etc.)
3636

delphin/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# the warehouse project:
44
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py
55

6-
__version__ = '1.8.1'
6+
__version__ = '1.9.0'
77
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()
88

99
__title__ = 'PyDelphin'

0 commit comments

Comments
 (0)