doc-zero 0.2.0__tar.gz → 0.2.1__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: doc-zero
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Zero-configuration documentation generator for Python.
5
5
  Author: Fábio Macêdo Mendes
6
6
  Author-email: Fábio Macêdo Mendes <fabiomacedomendes@gmail.com>
@@ -130,7 +130,7 @@ class PyProject:
130
130
  return package_dir.is_dir() and (package_dir / "__init__.py").exists()
131
131
 
132
132
  def _find_uv_root_modules(self) -> Iterable[ModuleSpec]:
133
- uv_conf = self.get("tool.uv.build-backend", type=dict)
133
+ uv_conf = self.get("tool.uv.build-backend", type=dict, default={})
134
134
  root = self.root / uv_conf.get("module-root", "")
135
135
  name = uv_conf.get("module-name")
136
136
  if name is None:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "doc-zero"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "Zero-configuration documentation generator for Python."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
@@ -69,7 +69,7 @@ release = '''
69
69
  && uv run task test \
70
70
  && uv run task docs \
71
71
  && uv run task build \
72
- && git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)"
72
+ && git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)" \
73
73
  && git push && git push --tags
74
74
  '''
75
75
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "doc-zero"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "Zero-configuration documentation generator for Python."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -72,7 +72,7 @@ release = """
72
72
  && uv run task test \\
73
73
  && uv run task docs \\
74
74
  && uv run task build \\
75
- && git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)"
75
+ && git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)" \\
76
76
  && git push && git push --tags
77
77
  """
78
78
 
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