Skip to content

Commit 2ef82c1

Browse files
authored
Merge pull request #363 from delph-in/release-1.8.0
Release 1.8.0
2 parents 93d3af1 + 9ba03f8 commit 2ef82c1

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10"]
15+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616

1717
steps:
1818
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22

3-
## Unreleased
3+
## [v1.8.0]
4+
5+
### Python Versions
6+
7+
* Added Python 3.11 support
48

59
### Added
610

@@ -1396,6 +1400,7 @@ There was no CHANGELOG file prior to this release, so I don't have much
13961400
information about changes, except for
13971401
[commit messages](../../commits/v0.2).
13981402

1403+
[v1.8.0]: ../../releases/tag/v1.8.0
13991404
[v1.7.0]: ../../releases/tag/v1.7.0
14001405
[v1.6.0]: ../../releases/tag/v1.6.0
14011406
[v1.5.1]: ../../releases/tag/v1.5.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.7.0'
30+
'1.8.0'
3131
>>> from delphin import mrs
3232
>>> mrs.__version__ # package version
33-
'1.7.0'
33+
'1.8.0'
3434
```
3535
* Python version (e.g. 3.7, 3.8, 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.7.0'
6+
__version__ = '1.8.0'
77
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()
88

99
__title__ = 'PyDelphin'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
'Programming Language :: Python :: 3.8',
5252
'Programming Language :: Python :: 3.9',
5353
'Programming Language :: Python :: 3.10',
54+
'Programming Language :: Python :: 3.11',
5455
'Topic :: Scientific/Engineering :: Information Analysis',
5556
'Topic :: Software Development :: Libraries :: Python Modules',
5657
'Topic :: Text Processing :: Linguistic',

0 commit comments

Comments
 (0)