diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e241764..9d861347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased][unreleased] +### Added +### Changed +### Fixed +### Removed +### Deprecated + + +## [v0.6.2][] + ### Added * `delphin.itsdb.ItsdbProfile.exists()` (#112) @@ -14,7 +23,6 @@ * Hash on the normalized form of Preds. (#107) -### Removed ### Fixed * Properly call `re.sub()` so the flags don't become the count (#108) @@ -22,7 +30,6 @@ * `normalize_pred_string()` now strips `_rel` (#111) and lowercases * `is_valid_pred_string()` no longer requires `_rel` (#111) -### Deprecated ## [v0.6.1][] @@ -468,6 +475,7 @@ information about changes, except for [commit messages](../../commits/v0.2). [unreleased]: ../../tree/develop +[v0.6.2]: ../../releases/tag/v0.6.2 [v0.6.1]: ../../releases/tag/v0.6.1 [v0.6.0]: ../../releases/tag/v0.6.0 [v0.5.1]: ../../releases/tag/v0.5.1 diff --git a/README.md b/README.md index 0201506c..ee440482 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ schema, creating sub-profiles, or converting between MRS representations #### Documentation -Documentation is developing on the +Documentation is available on the [wiki](https://github.com/delph-in/pydelphin/wiki). Help is appreciated! See [here](https://github.com/delph-in/pydelphin/blob/master/CONTRIBUTING.md#generating-api-documentation) for instructions. diff --git a/delphin/__about__.py b/delphin/__about__.py index f5f40380..51e102c3 100644 --- a/delphin/__about__.py +++ b/delphin/__about__.py @@ -3,7 +3,7 @@ # the warehouse project: # https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py -__version__ = '0.6.1' +__version__ = '0.6.2' __version_info__ = __version__.replace('.', ' ').replace('-', ' ').split() __title__ = 'PyDelphin' diff --git a/setup.py b/setup.py index fe52c7d6..5f94aab9 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ 'delphin.codecs' ], install_requires=[ - 'penman >=0.5.0', + 'penman >=0.6.1', 'networkx', 'requests', 'Pygments',