Skip to content

Commit 5dd7aa0

Browse files
authored
Release 3.0.1 (#238)
1 parent b68f8d8 commit 5dd7aa0

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
matrix:
55-
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11-dev" ]
55+
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11" ]
5656
os: [ ubuntu-latest ]
5757

5858
steps:
@@ -222,8 +222,8 @@ jobs:
222222
CIBW_ENVIRONMENT: CHARSET_NORMALIZER_USE_MYPYC='1'
223223
CIBW_BEFORE_BUILD: pip install -r build-requirements.txt
224224
#CIBW_CONFIG_SETTINGS: "--build-option=--no-isolation"
225-
CIBW_TEST_REQUIRES: pytest codecov pytest-cov
226-
CIBW_TEST_COMMAND: pytest {package}/tests
225+
CIBW_TEST_REQUIRES: pytest
226+
CIBW_TEST_COMMAND: pytest -c {package} {package}/tests
227227
CIBW_SKIP: pp*
228228
- name: Upload artifacts
229229
uses: actions/upload-artifact@v3

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
All notable changes to charset-normalizer will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5-
## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...master) (unreleased)
5+
## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...3.0.1) (2022-11-18)
66

77
### Fixed
88
- Multi-bytes cutter/chunk generator did not always cut correctly (PR #233)
99

10+
### Changed
11+
- Speedup provided by mypy/c 0.990 on Python >= 3.7
12+
1013
## [3.0.0](https://github.com/Ousret/charset_normalizer/compare/2.1.1...3.0.0) (2022-10-20)
1114

1215
### Added

charset_normalizer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
Expose version
33
"""
44

5-
__version__ = "3.0.1-dev"
5+
__version__ = "3.0.1"
66
VERSION = __version__.split(".")

0 commit comments

Comments
 (0)