From fdcb17cb15da6c012106f3ba9f39abacd0f56491 Mon Sep 17 00:00:00 2001 From: "Joe(y) Carpinelli" Date: Sun, 1 Feb 2026 12:54:22 -0500 Subject: [PATCH] chore(release): v0.0.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- crates/squirrel/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0fdc4da..057806f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.0.3", + ".": "0.0.4", "crates/squirrel": "0.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bb925e..d4c9673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.0.4](https://github.com/loopy-codes/twirl/compare/v0.0.3...v0.0.4) (2026-02-01) + + +### Features + +* Add license declaration to `squirrel` ([900df8c](https://github.com/loopy-codes/twirl/commit/900df8cfa2fe7658e0368d40d83e5448ce73a267)) +* Add scaffolding for `squirrel` crate ([a7f446c](https://github.com/loopy-codes/twirl/commit/a7f446cc47598ec4cba94dfb66bb2e051165ca32)) + ## [0.0.3](https://github.com/loopy-codes/twirl/compare/v0.0.2...v0.0.3) (2026-02-01) diff --git a/Cargo.lock b/Cargo.lock index 51ef866..eba4c71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -361,7 +361,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "squirrel" -version = "0.0.0" +version = "0.0.4" dependencies = [ "arborium", "lsp-types", @@ -398,7 +398,7 @@ checksum = "4ae62f7eae5eb549c71b76658648b72cc6111f2d87d24a1e31fa907f4943e3ce" [[package]] name = "twirl" -version = "0.0.3" +version = "0.0.4" dependencies = [ "pyo3", "squirrel", diff --git a/Cargo.toml b/Cargo.toml index c583af3..aadbb65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ lsp-types = "0.97.0" [package] name = "twirl" -version = "0.0.3" +version = "0.0.4" edition.workspace = true license.workspace = true publish.workspace = true @@ -26,4 +26,4 @@ crate-type = ["cdylib"] [dependencies] pyo3.workspace = true -squirrel = { path = "crates/squirrel", version = "0.0.0" } +squirrel = { path = "crates/squirrel", version = "0.0.4" } diff --git a/crates/squirrel/Cargo.toml b/crates/squirrel/Cargo.toml index 07abc0e..894758c 100644 --- a/crates/squirrel/Cargo.toml +++ b/crates/squirrel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squirrel" -version = "0.0.0" +version = "0.0.4" license.workspace = true edition.workspace = true publish.workspace = true