Skip to content

Commit 4d20968

Browse files
committed
Bump version to v1.10.0
1 parent 9cda5cd commit 4d20968

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

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

33
### Unreleased
44

5+
6+
## [v1.10.0]
7+
8+
**Release date: 2025-05-21**
9+
510
### Python Versions
611

712
* Removed Python 3.8 support ([#396])
@@ -1469,6 +1474,7 @@ There was no CHANGELOG file prior to this release, so I don't have much
14691474
information about changes, except for
14701475
[commit messages](../../commits/v0.2).
14711476

1477+
[v1.10.0]: ../../releases/tag/v1.10.0
14721478
[v1.9.1]: ../../releases/tag/v1.9.1
14731479
[v1.9.0]: ../../releases/tag/v1.9.0
14741480
[v1.8.1]: ../../releases/tag/v1.8.1

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.9.0'
30+
'1.10.0'
3131
>>> from delphin import mrs
3232
>>> mrs.__version__ # package version
33-
'1.9.0'
33+
'1.10.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.9.1'
6+
__version__ = '1.10.0'
77
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()
88

99
__title__ = 'PyDelphin'

0 commit comments

Comments
 (0)