From a463b72cf7712ec836a63e3a26ab25fc96fcc37c Mon Sep 17 00:00:00 2001 From: jacksonllee Date: Sun, 21 Feb 2021 11:16:34 -0600 Subject: [PATCH] MAINT bump version to 3.1.0, update changelog --- CHANGELOG.md | 14 +++++++++----- setup.py | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20cb64f..2fb6ee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [3.1.0] - 2021-02-21 + ### Added * Part-of-speech tagging: - Added the function `pos_tag` that takes a segmented sentence or phrase @@ -17,9 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Improved segmentation quality by revising the underlying wordlist data. * The test suite now covers code snippets in both the docstrings and `.rst` doc files. -### Changed -### Deprecated -### Removed ### Fixed * Fixed the issue of not opening text files with UTF-8 encoding (a possible issue on Windows). @@ -28,8 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/). * The word segmentation function `segment` now strips all whitespace from the input unsegmented string before segmenting it. -### Security - ## [3.0.0] - 2020-10-25 ### Added diff --git a/setup.py b/setup.py index 0eaa020..20eb9f9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ _THIS_DIR = os.path.dirname(__file__) -_VERSION = "3.1.0.dev3" +_VERSION = "3.1.0" def _get_long_description():