Skip to content

Commit

Permalink
Prepare for v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Jan 7, 2020
1 parent 8954e04 commit e8ee148
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ these changes are prefixed with "**BREAKING**"

(no unreleased changes yet)


## [v1.1.0][]

**Release date: 2020-01-07**

Removes the NetworkX dependency, resolves some TSQL bugs, and adds
some features to Derivations.

### Added

* `requirements.txt` mainly to try and help GitHub detect dependencies
Expand Down Expand Up @@ -1094,6 +1102,7 @@ information about changes, except for
[commit messages](../../commits/v0.2).

[unreleased]: ../../tree/develop
[v1.1.0]: ../../releases/tag/v1.1.0
[v1.0.3]: ../../releases/tag/v1.0.3
[v1.0.2]: ../../releases/tag/v1.0.2
[v1.0.1]: ../../releases/tag/v1.0.1
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ For bug requests, please provide the following, if possible:
```python
>>> from delphin.__about__ import __version__
>>> __version__ # distribution version
'1.0.0'
'1.1.0'
>>> from delphin import mrs
>>> mrs.__version__ # package version
'1.0.0'
'1.1.0'
```
* Python version (e.g. 3.5, 3.6, 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.0.3'
__version__ = '1.1.0'
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()

__title__ = 'PyDelphin'
Expand Down

0 comments on commit e8ee148

Please sign in to comment.