Skip to content

Commit fbd3f0f

Browse files
committed
releasing 0.9.0
1 parent fc1932a commit fbd3f0f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
77
as of 0.8.2
88

9-
## [Unreleased]
9+
## [0.9.0]
1010

1111
### Added
1212

@@ -21,6 +21,7 @@ as of 0.8.2
2121
- testing write access requires delete permission (#11)
2222
- Incorrectly returning True on non 401/404 exceptions on some key-related tests (#5)
2323
- check_credentials now safe from exception when using `failsafe=True` (#1)
24+
- Requiring python3.8+ (was already not working with 3.6 and 3.7 due to f-string)
2425

2526
## [0.8.3] - 2022-06-03
2627

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ def read(*names, **kwargs):
4444
"Development Status :: 4 - Beta",
4545
"Intended Audience :: Developers",
4646
"Programming Language :: Python",
47-
"Programming Language :: Python :: 3.6",
48-
"Programming Language :: Python :: 3.7",
4947
"Programming Language :: Python :: 3.8",
48+
"Programming Language :: Python :: 3.9",
49+
"Programming Language :: Python :: 3.10",
50+
"Programming Language :: Python :: 3.11",
51+
"Programming Language :: Python :: 3.12",
5052
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
5153
],
52-
python_requires=">=3.6",
54+
python_requires=">=3.8",
5355
)

src/kiwixstorage/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.3
1+
0.9.0

0 commit comments

Comments
 (0)