diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eaf4e5..363dfb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), + +## [1.0.12] - 2021-04-10 +### Fixed +- Support for docutils 0.17 thanks to mondeja and xi. + ## [1.0.11] - 2020-10-14 ### Fixed - Better handling of FileNotFound, PermissionDenied, or IsADirectory errors. diff --git a/pospell.py b/pospell.py index ae83e45..735d335 100644 --- a/pospell.py +++ b/pospell.py @@ -20,7 +20,7 @@ from docutils.utils import new_document import regex -__version__ = "1.0.11" +__version__ = "1.0.12" DEFAULT_DROP_CAPITALIZED = {"fr": True, "fr_FR": True} diff --git a/setup.cfg b/setup.cfg index fa490e6..f259687 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,19 +1,6 @@ -[bumpversion] -current_version = 1.0.11 -commit = True -tag = True - -[bumpversion:file:setup.py] -search = version="{current_version}" -replace = version="{new_version}" - -[bumpversion:file:pospell.py] -search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" - [metadata] name = pospell -version = 1.0.11 +version = attr: pospell.__version__ author = Julien Palard author_email = julien@palard.fr license = MIT license