diff options
| author | Val Neekman <val@neekware.com> | 2019-03-25 18:24:30 -0400 |
|---|---|---|
| committer | Val Neekman <val@neekware.com> | 2019-03-25 18:24:30 -0400 |
| commit | ee16331e39455150573e19db62f43c948a6a0785 (patch) | |
| tree | 544cbab21958d3491119736fb6193bd13d20134f | |
| parent | 99646af0262c2c2b397a065f52af69cae03a9b16 (diff) | |
| parent | 98c83bee0900751d37fd70c1a048cdd85ca034c4 (diff) | |
| download | python-slugify-ee16331e39455150573e19db62f43c948a6a0785.tar.gz | |
Merge branch 'master' into development
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rw-r--r-- | slugify/__init__.py | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b5a37aa..a426d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.0.1 + - Add test.py to manifest + ## 3.0.0 - Upgrade Unidecode - Promote text-unidecode as the primary decoding package diff --git a/MANIFEST.in b/MANIFEST.in index 067e13a..0c78f18 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include CHANGELOG.md include LICENSE include README.md +include test.py diff --git a/slugify/__init__.py b/slugify/__init__.py index c2e205b..3ad56fe 100644 --- a/slugify/__init__.py +++ b/slugify/__init__.py @@ -3,4 +3,4 @@ from .slugify import * __author__ = 'Val Neekman @ Neekware Inc. [@vneekman]' __description__ = 'A Python slugify application that also handles Unicode' -__version__ = '3.0.0' +__version__ = '3.0.1' |
