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
4 changes: 2 additions & 2 deletions packages/code-storage-go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ fmt.Println(repo.ID)
Because this Go module lives in a monorepo, git tags must be prefixed with the module's subdirectory path:

```bash
git tag packages/code-storage-go/v0.4.3
git push origin packages/code-storage-go/v0.4.3
git tag packages/code-storage-go/v0.5.0
git push origin packages/code-storage-go/v0.5.0
```

Make sure the version in `version.go` (`PackageVersion`) matches the tag before tagging.
Expand Down
2 changes: 1 addition & 1 deletion packages/code-storage-go/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package storage

const (
PackageName = "code-storage-go-sdk"
PackageVersion = "0.4.3"
PackageVersion = "0.5.0"
)

func userAgent() string {
Expand Down
2 changes: 1 addition & 1 deletion packages/code-storage-python/pierre_storage/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Version information for Pierre Storage SDK."""

PACKAGE_NAME = "code-storage-py-sdk"
PACKAGE_VERSION = "1.5.4"
PACKAGE_VERSION = "1.6.0"


def get_user_agent() -> str:
Expand Down
2 changes: 1 addition & 1 deletion packages/code-storage-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pierre-storage"
version = "1.5.4"
version = "1.6.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Update the uv lockfile version with the bump

When bumping the Python package to 1.6.0 here, the checked-in packages/code-storage-python/uv.lock still records the editable pierre-storage package as version 1.5.4 at lines 917-918. Workflows that enforce uv's locked project metadata, such as uv sync --locked or uv lock --check, can treat the lockfile as stale or continue carrying the old local package version, so the Python release/test environment is no longer reproducible from the committed files. Please regenerate or update uv.lock as part of this version bump.

Useful? React with 👍 / 👎.

description = "Pierre Git Storage SDK for Python"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/code-storage-python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/code-storage-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pierre/storage",
"version": "1.4.4",
"version": "1.5.0",
"description": "Pierre Git Storage SDK",
"repository": {
"type": "git",
Expand Down
Loading