Skip to content

Commit

Permalink
Merge pull request #100 from PyYoshi/bump-v2.2.0-alpha.2
Browse files Browse the repository at this point in the history
bump to v2.2.0-alpha.2
  • Loading branch information
PyYoshi committed Jun 6, 2024
2 parents aeccfa3 + aa08477 commit ac15c78
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## 2.x.x

## 2.2.0-alpha.1 (2024-06-xx)
## 2.2.0-alpha.2 (2024-06-xx)

- Improve test codes and CI/CD workflows

## 2.2.0-alpha.1 (2024-06-07)

- support Python 3.10, 3.11, 3.12
- drop support for Python 3.6, 3.7, 3.8
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "cchardet.__version__" }

[tool.pytest.ini_options]
# pythonpath = "src"

[tool.rye]
dev-dependencies = [
"chardet>=5.2.0",
Expand Down
4 changes: 2 additions & 2 deletions src/cchardet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from . import _cchardet

version = (2, 2, 0, "alpha", 1)
__version__ = "2.2.0a1"
version = (2, 2, 0, "alpha", 2)
__version__ = "2.2.0a2"


def detect(msg):
Expand Down

0 comments on commit ac15c78

Please sign in to comment.