Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.9.0 #385

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 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 All @@ -11,6 +15,7 @@

* Migrate to a hatch-based build ([#374])
* Use standard `__main__.py` module ([#375])
* Switch to Ruff for linting ([#383])

### Fixed

Expand Down Expand Up @@ -1435,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 Expand Up @@ -1629,3 +1635,4 @@ information about changes, except for
[#376]: https://github.com/delph-in/pydelphin/issues/376
[#378]: https://github.com/delph-in/pydelphin/issues/378
[#379]: https://github.com/delph-in/pydelphin/issues/379
[#383]: https://github.com/delph-in/pydelphin/issues/383
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
Loading