Skip to content

Commit

Permalink
Merge pull request #363 from delph-in/release-1.8.0
Browse files Browse the repository at this point in the history
Release 1.8.0
  • Loading branch information
goodmami committed Jan 8, 2023
2 parents 93d3af1 + 9ba03f8 commit 2ef82c1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log

## Unreleased
## [v1.8.0]

### Python Versions

* Added Python 3.11 support

### Added

Expand Down Expand Up @@ -1396,6 +1400,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.8.0]: ../../releases/tag/v1.8.0
[v1.7.0]: ../../releases/tag/v1.7.0
[v1.6.0]: ../../releases/tag/v1.6.0
[v1.5.1]: ../../releases/tag/v1.5.1
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.7.0'
'1.8.0'
>>> from delphin import mrs
>>> mrs.__version__ # package version
'1.7.0'
'1.8.0'
```
* Python version (e.g. 3.7, 3.8, 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.7.0'
__version__ = '1.8.0'
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()

__title__ = 'PyDelphin'
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
Expand Down

0 comments on commit 2ef82c1

Please sign in to comment.