Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e724be283f | |||
| cfd968aced | |||
| a949d0a5de |
@@ -59,6 +59,15 @@ jobs:
|
||||
fi
|
||||
if uvx --from commitizen cz bump $args; then
|
||||
after=$(uvx --from commitizen cz version --project)
|
||||
# cz bump updates pyproject's version but not uv.lock's own-package
|
||||
# entry, which would leave `uv sync --locked` failing at the release
|
||||
# tag. Refresh the lock and fold it into the bump commit + tag.
|
||||
uv lock
|
||||
if ! git diff --quiet uv.lock; then
|
||||
git add uv.lock
|
||||
git commit --amend --no-edit
|
||||
git tag -f "v$after"
|
||||
fi
|
||||
echo "version=$after" >> "$GITHUB_OUTPUT"
|
||||
echo "do_release=true" >> "$GITHUB_OUTPUT"
|
||||
echo "Bumped $before -> $after"
|
||||
|
||||
@@ -16,6 +16,12 @@ CORS, and the full activity / event / wellness / power-curve / gear / custom-ite
|
||||
|
||||
[0.1.0]: https://git.farh.net/farhoodlabs/intervalsicu-mcp/releases/tag/v0.1.0
|
||||
|
||||
## v0.2.1 (2026-07-20)
|
||||
|
||||
### Fix
|
||||
|
||||
- **release**: sync uv.lock into the bump commit and tag
|
||||
|
||||
## v0.2.0 (2026-07-20)
|
||||
|
||||
### Feat
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "intervalsicu-mcp"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
description = "A Model Context Protocol server for Intervals.icu (FastMCP, native OAuth)"
|
||||
readme = { file = "README.md", content-type = "text/markdown" }
|
||||
requires-python = ">=3.12"
|
||||
|
||||
@@ -538,7 +538,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "intervalsicu-mcp"
|
||||
version = "0.1.0"
|
||||
version = "0.2.1"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "alembic" },
|
||||
@@ -1346,8 +1346,8 @@ name = "secretstorage"
|
||||
version = "3.5.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "cryptography", marker = "sys_platform != 'win32'" },
|
||||
{ name = "jeepney", marker = "sys_platform != 'win32'" },
|
||||
{ name = "cryptography" },
|
||||
{ name = "jeepney" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/1c/03/e834bcd866f2f8a49a85eaff47340affa3bfa391ee9912a952a1faa68c7b/secretstorage-3.5.0.tar.gz", hash = "sha256:f04b8e4689cbce351744d5537bf6b1329c6fc68f91fa666f60a380edddcd11be", size = 19884, upload-time = "2025-11-23T19:02:53.191Z" }
|
||||
wheels = [
|
||||
|
||||
Reference in New Issue
Block a user