Skip to content

Commit 38eb924

Browse files
committed
Prepare for 1.5.0
1 parent af93253 commit 38eb924

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
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.5.0]
6+
7+
**Release date: 2020-12-30**
8+
59
### Python Versions
610

711
* Added Python 3.9 support
@@ -1313,6 +1317,7 @@ There was no CHANGELOG file prior to this release, so I don't have much
13131317
information about changes, except for
13141318
[commit messages](../../commits/v0.2).
13151319

1320+
[v1.5.0]: ../../releases/tag/v1.5.0
13161321
[v1.4.1]: ../../releases/tag/v1.4.1
13171322
[v1.4.0]: ../../releases/tag/v1.4.0
13181323
[v1.3.0]: ../../releases/tag/v1.3.0

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ For bug requests, please provide the following, if possible:
2323
```python
2424
>>> from delphin.__about__ import __version__
2525
>>> __version__ # distribution version
26-
'1.4.0'
26+
'1.5.0'
2727
>>> from delphin import mrs
2828
>>> mrs.__version__ # package version
29-
'1.4.0'
29+
'1.5.0'
3030
```
3131
* Python version (e.g. 3.6, 3.7, etc.)
3232

delphin/__about__.py

Lines changed: 2 additions & 2 deletions
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.4.1'
6+
__version__ = '1.5.0'
77
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()
88

99
__title__ = 'PyDelphin'
@@ -16,4 +16,4 @@
1616
__maintainer__ = 'Michael Wayne Goodman and Angie McMillan-Major'
1717

1818
__license__ = 'MIT'
19-
__copyright__ = '2013--2019 %s <%s> and contributors' % (__author__, __email__)
19+
__copyright__ = '2013--2020 %s <%s> and contributors' % (__author__, __email__)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import delphin.__about__
2323

2424
project = delphin.__about__.__title__
25-
copyright = u'2019, Michael Wayne Goodman'
25+
copyright = u'2020, Michael Wayne Goodman'
2626
author = delphin.__about__.__author__
2727

2828
# The short X.Y version

0 commit comments

Comments
 (0)