valid8r 0.3.2__tar.gz → 0.4.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: valid8r
3
- Version: 0.3.2
3
+ Version: 0.4.0
4
4
  Summary: Clean, flexible input validation for Python applications
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -35,8 +35,15 @@ Description-Content-Type: text/markdown
35
35
  [![Python versions](https://img.shields.io/pypi/pyversions/valid8r.svg)](https://pypi.org/project/valid8r/)
36
36
  [![License](https://img.shields.io/github/license/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/blob/main/LICENSE)
37
37
  [![CI Status](https://img.shields.io/github/actions/workflow/status/mikelane/valid8r/ci.yml?branch=main)](https://github.com/mikelane/valid8r/actions)
38
+ [![codecov](https://codecov.io/gh/mikelane/valid8r/branch/main/graph/badge.svg)](https://codecov.io/gh/mikelane/valid8r)
38
39
  [![Documentation](https://img.shields.io/readthedocs/valid8r.svg)](https://valid8r.readthedocs.io/)
39
40
 
41
+ [![PyPI downloads](https://img.shields.io/pypi/dm/valid8r.svg)](https://pypi.org/project/valid8r/)
42
+ [![GitHub stars](https://img.shields.io/github/stars/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/stargazers)
43
+ [![GitHub contributors](https://img.shields.io/github/contributors/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/graphs/contributors)
44
+ [![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
45
+ [![Semantic Release](https://img.shields.io/badge/semantic--release-python-blue)](https://github.com/python-semantic-release/python-semantic-release)
46
+
40
47
  A clean, flexible input validation library for Python applications.
41
48
 
42
49
  ## Features
@@ -4,8 +4,15 @@
4
4
  [![Python versions](https://img.shields.io/pypi/pyversions/valid8r.svg)](https://pypi.org/project/valid8r/)
5
5
  [![License](https://img.shields.io/github/license/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/blob/main/LICENSE)
6
6
  [![CI Status](https://img.shields.io/github/actions/workflow/status/mikelane/valid8r/ci.yml?branch=main)](https://github.com/mikelane/valid8r/actions)
7
+ [![codecov](https://codecov.io/gh/mikelane/valid8r/branch/main/graph/badge.svg)](https://codecov.io/gh/mikelane/valid8r)
7
8
  [![Documentation](https://img.shields.io/readthedocs/valid8r.svg)](https://valid8r.readthedocs.io/)
8
9
 
10
+ [![PyPI downloads](https://img.shields.io/pypi/dm/valid8r.svg)](https://pypi.org/project/valid8r/)
11
+ [![GitHub stars](https://img.shields.io/github/stars/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/stargazers)
12
+ [![GitHub contributors](https://img.shields.io/github/contributors/mikelane/valid8r.svg)](https://github.com/mikelane/valid8r/graphs/contributors)
13
+ [![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
14
+ [![Semantic Release](https://img.shields.io/badge/semantic--release-python-blue)](https://github.com/python-semantic-release/python-semantic-release)
15
+
9
16
  A clean, flexible input validation library for Python applications.
10
17
 
11
18
  ## Features
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "valid8r"
3
- version = "0.3.2"
3
+ version = "0.4.0"
4
4
  description = "Clean, flexible input validation for Python applications"
5
5
  authors = ["Mike Lane <mikelane@gmail.com>"]
6
6
  license = "MIT"
@@ -40,6 +40,7 @@ httpx = "^0.28.1"
40
40
  livereload = "^2.7.1"
41
41
  mypy = "^1.17.1"
42
42
  pre-commit = "^4.3.0"
43
+ python-semantic-release = "^9.21.1"
43
44
  uvicorn = "^0.37.0"
44
45
 
45
46
  [tool.poetry.group.lint.dependencies]
@@ -196,3 +197,51 @@ module = [
196
197
  "docs.*",
197
198
  ]
198
199
  ignore_errors = true
200
+
201
+ [tool.semantic_release]
202
+ version_toml = ["pyproject.toml:tool.poetry.version"]
203
+ branch = "main"
204
+ build_command = "pip install poetry && poetry build"
205
+ dist_path = "dist/"
206
+ upload_to_release = true
207
+ upload_to_pypi = true
208
+ remove_dist = false
209
+ major_on_zero = false
210
+ tag_format = "v{version}"
211
+
212
+ [tool.semantic_release.branches.main]
213
+ match = "main"
214
+ prerelease = false
215
+
216
+ [tool.semantic_release.changelog]
217
+ template_dir = "templates"
218
+ changelog_file = "CHANGELOG.md"
219
+ exclude_commit_patterns = []
220
+
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
+ [tool.semantic_release.commit_parser_options]
236
+ allowed_tags = ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"]
237
+ minor_tags = ["feat"]
238
+ patch_tags = ["fix", "perf"]
239
+
240
+ [tool.semantic_release.remote]
241
+ name = "origin"
242
+ type = "github"
243
+ ignore_token_for_push = false
244
+
245
+ [tool.semantic_release.publish]
246
+ dist_glob_patterns = ["dist/*"]
247
+ upload_to_vcs_release = true
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes