From 46500ce80818f0fa815425c964bfbf2efe58ac2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 28 Jun 2025 02:02:04 +0000 Subject: [PATCH] Version packages and update changelogs --- .changeset/ambitious-griffin-of-aurora.md | 5 ----- .changeset/electric-stallion-of-nirvana.md | 5 ----- .changeset/lynx-of-great-economy.md | 5 ----- .changeset/purring-albatross-of-defiance.md | 5 ----- .changeset/unnatural-robust-tortoise.md | 5 ----- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 9 ++------- 7 files changed, 17 insertions(+), 32 deletions(-) delete mode 100644 .changeset/ambitious-griffin-of-aurora.md delete mode 100644 .changeset/electric-stallion-of-nirvana.md delete mode 100644 .changeset/lynx-of-great-economy.md delete mode 100644 .changeset/purring-albatross-of-defiance.md delete mode 100644 .changeset/unnatural-robust-tortoise.md create mode 100644 CHANGELOG.md diff --git a/.changeset/ambitious-griffin-of-aurora.md b/.changeset/ambitious-griffin-of-aurora.md deleted file mode 100644 index cdcbd0d..0000000 --- a/.changeset/ambitious-griffin-of-aurora.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"changeset": patch ---- - -update readme diff --git a/.changeset/electric-stallion-of-nirvana.md b/.changeset/electric-stallion-of-nirvana.md deleted file mode 100644 index 7313d1d..0000000 --- a/.changeset/electric-stallion-of-nirvana.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"changeset": minor ---- - -implemented all the basic subcommands diff --git a/.changeset/lynx-of-great-economy.md b/.changeset/lynx-of-great-economy.md deleted file mode 100644 index 770a022..0000000 --- a/.changeset/lynx-of-great-economy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"changeset": patch ---- - -ruff fix and ruff format diff --git a/.changeset/purring-albatross-of-defiance.md b/.changeset/purring-albatross-of-defiance.md deleted file mode 100644 index 8a25227..0000000 --- a/.changeset/purring-albatross-of-defiance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"changeset": patch ---- - -this patch change is to test out the PR updating workflow diff --git a/.changeset/unnatural-robust-tortoise.md b/.changeset/unnatural-robust-tortoise.md deleted file mode 100644 index 361aa74..0000000 --- a/.changeset/unnatural-robust-tortoise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"changeset": patch ---- - -bump python version to 3.13 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b63e88b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# changeset + +## 0.2.0 + +### Minor Changes + +[`00129c2`](https://github.com/browserbase/pychangeset/commit/00129c2) - implemented all the basic subcommands + +### Patch Changes + +[`00129c2`](https://github.com/browserbase/pychangeset/commit/00129c2) - update readme +[`00129c2`](https://github.com/browserbase/pychangeset/commit/00129c2) - ruff fix and ruff format +[`00129c2`](https://github.com/browserbase/pychangeset/commit/00129c2) - bump python version to 3.13 +[`00129c2`](https://github.com/browserbase/pychangeset/commit/00129c2) - this patch change is to test out the PR updating workflow + diff --git a/pyproject.toml b/pyproject.toml index 8de771d..d943289 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "changeset" -version = "0.1.0" +version = "0.2.0" description = "Changeset management tool for Python projects" readme = "README.md" keywords = [ "changeset", "versioning", "changelog", "release",] @@ -30,12 +30,7 @@ pychangeset-version = "changeset.version:main" pychangeset-changelog = "changeset.changelog:main" [tool.uv] -dev-dependencies = [ - "ruff>=0.1.0", - "pytest>=7.0", - "pytest-cov>=4.0", - "pytest-mock>=3.0", -] +dev-dependencies = [ "ruff>=0.1.0", "pytest>=7.0", "pytest-cov>=4.0", "pytest-mock>=3.0",] [tool.hatch.build.targets.wheel] packages = [ "changeset",]