wry 0.2.0__tar.gz → 0.2.1.dev1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wry
3
- Version: 0.2.0
3
+ Version: 0.2.1.dev1
4
4
  Summary: Why Repeat Yourself? - Define your CLI once with Pydantic models
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wry"
3
- version = "0.2.0" # Placeholder - actual version comes from git tags via poetry-dynamic-versioning
3
+ version = "0.2.1.dev1" # Placeholder - actual version comes from git tags via poetry-dynamic-versioning
4
4
  description = "Why Repeat Yourself? - Define your CLI once with Pydantic models"
5
5
  authors = ["Tyler House <26489166+tahouse@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -52,9 +52,9 @@ format-jinja = """
52
52
  {%- if distance == 0 -%}
53
53
  {{ serialize_pep440(base, stage, revision) }}
54
54
  {%- elif revision is not none -%}
55
- {{ serialize_pep440(base, stage, revision + 1, dev=distance, metadata=[commit]) }}
55
+ {{ serialize_pep440(base, stage, revision + 1, dev=distance) }}
56
56
  {%- else -%}
57
- {{ serialize_pep440(bump_version(base), stage, revision, dev=distance, metadata=[commit]) }}
57
+ {{ serialize_pep440(bump_version(base), stage, revision, dev=distance) }}
58
58
  {%- endif -%}
59
59
  """
60
60
 
@@ -1,8 +1,8 @@
1
1
  # file generated by poetry-dynamic-versioning
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- __version__: str = "0.2.0" # This will be replaced during build
5
- __version_tuple__: tuple[int, ...] = (0, 2, 0) # This will be replaced during build
4
+ __version__: str = "0.2.1.dev1" # This will be replaced during build
5
+ __version_tuple__: tuple[int, ...] = (0, 2, 1, "dev1") # This will be replaced during build
6
6
  __commit_id__: str | None = None # This will be replaced during build
7
7
 
8
8
  # For compatibility with setuptools-scm test expectations
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