diff --git a/CHANGELOG.md b/CHANGELOG.md index fd29b78..506d4e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## CHANGELOG +### 1.3.1 + +* Requires `bleach-allowlist` version 1.0.3 or higher + ### 1.3.0 * Migrate using Python package from `bleach-whitelist` to `bleach-allowlist` diff --git a/dev-requirements.txt b/dev-requirements.txt index 33c24e2..1294a94 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -9,7 +9,7 @@ autopep8==1.5.4 # via -r dev-requirements.in bleach-allowlist==1.0.3 # via -r requirements.in bleach==3.1.5 # via -r requirements.in, readme-renderer certifi==2020.6.20 # via requests -cffi==1.14.1 # via cryptography +cffi==1.14.2 # via cryptography chardet==3.0.4 # via requests click==7.1.2 # via mkdocs, nltk, pip-tools codecov==2.1.8 # via -r dev-requirements.in diff --git a/mkdocssafetext/__init__.py b/mkdocssafetext/__init__.py index ccca320..1f455d6 100644 --- a/mkdocssafetext/__init__.py +++ b/mkdocssafetext/__init__.py @@ -28,6 +28,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ -__version__ = '1.3.0' +__version__ = '1.3.1' __author__ = 'raimon' __license__ = 'BSD License' diff --git a/requirements.in b/requirements.in index b98223d..6c1bbd6 100644 --- a/requirements.in +++ b/requirements.in @@ -1,3 +1,3 @@ bleach -bleach-allowlist +bleach-allowlist>=1.0.3 mkdocs>=0.17.0 diff --git a/setup.cfg b/setup.cfg index 256dd89..d2b5864 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,8 +28,8 @@ setup_requires = pytest-runner install_requires = bleach - bleach-allowlist - mkdocs>=0.17.0 + bleach-allowlist >= 1.0.3 + mkdocs >= 0.17.0 tests_require = pytest-cov pytest-pycodestyle