Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 1.3.5 - 2026-04-22

Release version resolution compatibility fixes.

### Fixed in 1.3.5

- Fixed `poetry dynamic-versioning` CI failures by removing unsupported `tool.poetry-dynamic-versioning.fallback-version` config.
- Fixed release builds resolving to `0.0.0` by switching to `project.dynamic = ["version"]` and moving the placeholder version to `tool.poetry.version`, so `poetry-dynamic-versioning` can inject the computed tag version correctly.
- Fixed `pyproject.toml` inline documentation to reflect current fallback behavior when no git tag is reachable.

## 1.3.4 - 2026-04-22

Release build versioning fix: explicit plugin activation and full history checkout.
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vstack"
version = "0.0.0"
dynamic = ["version"]
description = "VS Code-native AI engineering workflow system for microservices, libraries, and backend systems."
license = "MIT"
readme = "README.md"
Expand All @@ -16,6 +16,7 @@ vstack = "vstack:main"
# ---------------------------------------------------------------------------

[tool.poetry]
version = "0.0.0"
packages = [{include = "vstack", from = "src"}]
include = [
{ path = "src/vstack/_templates", format = ["sdist", "wheel"] },
Expand Down Expand Up @@ -86,14 +87,14 @@ build-backend = "poetry_dynamic_versioning.backend"

# ---------------------------------------------------------------------------
# poetry-dynamic-versioning — reads version from git tags at build time.
# Fallback is used when no git tag is reachable (e.g. shallow clone, fresh repo).
# If no git tag is reachable (e.g. shallow clone, fresh repo), the placeholder
# `tool.poetry.version` value (`0.0.0`) remains in effect.
# ---------------------------------------------------------------------------

[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
Comment thread
eschaar marked this conversation as resolved.
fallback-version = "0.0.0"

# ---------------------------------------------------------------------------
# pyright is used for type checking in VS Code, by Pylance.
Expand Down
Loading