summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/dev.yml2
-rw-r--r--.github/workflows/main.yml2
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md1
-rw-r--r--slugify/__version__.py2
6 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 56e4097..da3899e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
+ python: [3.7, 3.8, 3.9, 3.10, 3.11, pypy3.8]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml
index 73f2f07..615e82a 100644
--- a/.github/workflows/dev.yml
+++ b/.github/workflows/dev.yml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
+ python: [3.7, 3.8, 3.9, 3.10, 3.11, pypy3.8]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a4ae9ad..68d30fa 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
+ python: [3.7, 3.8, 3.9, 3.10, 3.11, pypy3.8]
steps:
- uses: actions/checkout@v3
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2ba0bb3..b95783a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 7.0.0
+
+- Drop python 3.6, add python 3.11
+
## 6.1.2
- Reintroduce the cli options
diff --git a/README.md b/README.md
index f93afee..2514fc5 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@ However, there is an alternative decoding package called [Unidecode](https://git
- Python `2.7` <-> python-slugify `< 5.0.0`
- Python `3.6+` <-> python-slugify `>= 5.0.0`
+- Python `3.7+` <-> python-slugify `>= 7.0.0`
# How to install
diff --git a/slugify/__version__.py b/slugify/__version__.py
index 55abc97..184339a 100644
--- a/slugify/__version__.py
+++ b/slugify/__version__.py
@@ -5,4 +5,4 @@ __description__ = 'A Python slugify application that also handles Unicode'
__url__ = 'https://github.com/un33k/python-slugify'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Val Neekman @ Neekware Inc.'
-__version__ = '6.1.2'
+__version__ = '7.0.0'