valid8r 0.4.0__tar.gz → 0.4.2__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.0 → valid8r-0.4.2}/PKG-INFO +1 -1
- {valid8r-0.4.0 → valid8r-0.4.2}/pyproject.toml +5 -17
- {valid8r-0.4.0 → valid8r-0.4.2}/LICENSE +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/README.md +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/__init__.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/core/__init__.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/core/combinators.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/core/maybe.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/core/parsers.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/core/validators.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/prompt/__init__.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/prompt/basic.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/py.typed +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/testing/__init__.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/testing/assertions.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/testing/generators.py +0 -0
- {valid8r-0.4.0 → valid8r-0.4.2}/valid8r/testing/mock_input.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "valid8r"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.2"
|
|
4
4
|
description = "Clean, flexible input validation for Python applications"
|
|
5
5
|
authors = ["Mike Lane <mikelane@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -208,34 +208,22 @@ upload_to_pypi = true
|
|
|
208
208
|
remove_dist = false
|
|
209
209
|
major_on_zero = false
|
|
210
210
|
tag_format = "v{version}"
|
|
211
|
+
commit_parser = "angular"
|
|
212
|
+
logging_use_named_masks = false
|
|
211
213
|
|
|
212
214
|
[tool.semantic_release.branches.main]
|
|
213
215
|
match = "main"
|
|
214
216
|
prerelease = false
|
|
215
217
|
|
|
216
218
|
[tool.semantic_release.changelog]
|
|
217
|
-
template_dir = "templates"
|
|
218
219
|
changelog_file = "CHANGELOG.md"
|
|
219
220
|
exclude_commit_patterns = []
|
|
220
221
|
|
|
221
|
-
[tool.semantic_release.changelog.environment]
|
|
222
|
-
block_start_string = "{%"
|
|
223
|
-
block_end_string = "%}"
|
|
224
|
-
variable_start_string = "{{"
|
|
225
|
-
variable_end_string = "}}"
|
|
226
|
-
comment_start_string = "{#"
|
|
227
|
-
comment_end_string = "#}"
|
|
228
|
-
trim_blocks = false
|
|
229
|
-
lstrip_blocks = false
|
|
230
|
-
newline_sequence = "\n"
|
|
231
|
-
keep_trailing_newline = false
|
|
232
|
-
extensions = []
|
|
233
|
-
autoescape = true
|
|
234
|
-
|
|
235
222
|
[tool.semantic_release.commit_parser_options]
|
|
236
|
-
allowed_tags = ["
|
|
223
|
+
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "test"]
|
|
237
224
|
minor_tags = ["feat"]
|
|
238
225
|
patch_tags = ["fix", "perf"]
|
|
226
|
+
default_bump_level = 0
|
|
239
227
|
|
|
240
228
|
[tool.semantic_release.remote]
|
|
241
229
|
name = "origin"
|
|
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
|