valid8r 0.4.3__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valid8r might be problematic. Click here for more details.
- {valid8r-0.4.3 → valid8r-0.5.0}/PKG-INFO +1 -1
- {valid8r-0.4.3 → valid8r-0.5.0}/pyproject.toml +4 -1
- {valid8r-0.4.3 → valid8r-0.5.0}/LICENSE +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/README.md +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/__init__.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/core/__init__.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/core/combinators.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/core/maybe.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/core/parsers.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/core/validators.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/prompt/__init__.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/prompt/basic.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/py.typed +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/testing/__init__.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/testing/assertions.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/testing/generators.py +0 -0
- {valid8r-0.4.3 → valid8r-0.5.0}/valid8r/testing/mock_input.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "valid8r"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.0"
|
|
4
4
|
description = "Clean, flexible input validation for Python applications"
|
|
5
5
|
authors = ["Mike Lane <mikelane@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -218,6 +218,9 @@ prerelease = false
|
|
|
218
218
|
[tool.semantic_release.changelog]
|
|
219
219
|
changelog_file = "CHANGELOG.md"
|
|
220
220
|
exclude_commit_patterns = []
|
|
221
|
+
mode = "init"
|
|
222
|
+
# GitHub auto-generates release notes via .github/release.yml
|
|
223
|
+
# CHANGELOG.md is maintained but not used for GitHub releases
|
|
221
224
|
|
|
222
225
|
[tool.semantic_release.commit_parser_options]
|
|
223
226
|
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "test"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|