Skip to content

Commit 64fa5b8

Browse files
chore(release): 0.2.1-dev.1 [skip ci]
## <small>0.2.1-dev.1 (2025-12-04)</small> * fix(ci): project name and current version number ([a240f11](a240f11)) * chore: npm-audit-fix ([f55d3ef](f55d3ef)) * ci: add PyPI publishing to semantic-release workflow ([6d1cc91](6d1cc91)) * ci: switch to sr-uv-plugin for version management ([c481d2b](c481d2b)) * docs: update installation instructions for PyPI package cs-wobble ([c1f363a](c1f363a))
1 parent a240f11 commit 64fa5b8

2 files changed

Lines changed: 26 additions & 39 deletions

File tree

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## <small>0.2.1-dev.1 (2025-12-04)</small>
2+
3+
* fix(ci): project name and current version number ([a240f11](https://github.com/CrackingShells/Wobble/commit/a240f11))
4+
* chore: npm-audit-fix ([f55d3ef](https://github.com/CrackingShells/Wobble/commit/f55d3ef))
5+
* ci: add PyPI publishing to semantic-release workflow ([6d1cc91](https://github.com/CrackingShells/Wobble/commit/6d1cc91))
6+
* ci: switch to sr-uv-plugin for version management ([c481d2b](https://github.com/CrackingShells/Wobble/commit/c481d2b))
7+
* docs: update installation instructions for PyPI package cs-wobble ([c1f363a](https://github.com/CrackingShells/Wobble/commit/c1f363a))
8+
19
## [0.2.0](https://github.com/CrackingShells/Wobble/compare/v0.1.0...v0.2.0) (2025-09-18)
210

311

pyproject.toml

Lines changed: 18 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,35 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
2+
requires = [ "setuptools>=61.0" ]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cs-wobble"
7-
version = "0.2.0"
8-
authors = [
9-
{ name = "Cracking Shells Team" },
10-
]
7+
version = "0.2.1-dev.1"
118
description = "Centralized testing package for Cracking Shells"
129
readme = "README.md"
1310
requires-python = ">=3.12"
1411
classifiers = [
15-
"Programming Language :: Python :: 3.12",
16-
"License :: OSI Approved :: GNU Affero General Public License v3",
17-
"Operating System :: OS Independent",
12+
"Programming Language :: Python :: 3.12",
13+
"License :: OSI Approved :: GNU Affero General Public License v3",
14+
"Operating System :: OS Independent"
1815
]
16+
dependencies = [ "colorama>=0.4.6" ]
1917

20-
dependencies = [
21-
"colorama>=0.4.6", # Cross-platform color support
22-
]
18+
[[project.authors]]
19+
name = "Cracking Shells Team"
2320

24-
[project.optional-dependencies]
25-
dev = [
26-
# Development dependencies can be added here in future iterations
27-
# Examples: "black>=23.0.0", "mypy>=1.0.0", "flake8>=6.0.0"
28-
]
21+
[project.optional-dependencies]
22+
dev = [ ]
2923

30-
[project.scripts]
31-
# Uncomment and modify if this package provides a CLI tool
32-
wobble = "wobble.cli:main"
24+
[project.scripts]
25+
wobble = "wobble.cli:main"
3326

34-
[project.urls]
35-
"Homepage" = "https://github.com/CrackingShells/Wobble"
36-
"Bug Tracker" = "https://github.com/CrackingShells/Wobble/issues"
27+
[project.urls]
28+
Homepage = "https://github.com/CrackingShells/Wobble"
29+
"Bug Tracker" = "https://github.com/CrackingShells/Wobble/issues"
3730

38-
[tool.setuptools]
39-
package-dir = {"" = "."}
31+
[tool.setuptools.package-dir]
32+
"" = "."
4033

4134
[tool.setuptools.packages.find]
42-
where = ["."]
43-
44-
# Future: Tool configurations can be added here when code quality tools are adopted
45-
# [tool.black]
46-
# line-length = 88
47-
# target-version = ['py312']
48-
#
49-
# [tool.isort]
50-
# profile = "black"
51-
# line_length = 88
52-
#
53-
# [tool.mypy]
54-
# python_version = "3.12"
55-
# warn_return_any = true
56-
# warn_unused_configs = true
35+
where = [ "." ]

0 commit comments

Comments
 (0)