From b4c057ca711c0777ca348d0f3b19cf276816661f Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 24 Oct 2024 16:44:40 -0600 Subject: [PATCH] Version packages (#320) --- .changeset/curly-masks-fly.md | 11 ----------- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/cli/package.json | 2 +- packages/parser/CHANGELOG.md | 11 +++++++++++ packages/parser/package.json | 2 +- packages/plugin-css/CHANGELOG.md | 13 +++++++++++++ packages/plugin-css/package.json | 2 +- packages/plugin-js/CHANGELOG.md | 12 ++++++++++++ packages/plugin-js/package.json | 2 +- packages/plugin-sass/CHANGELOG.md | 13 +++++++++++++ packages/plugin-sass/package.json | 2 +- packages/token-tools/CHANGELOG.md | 6 ++++++ packages/token-tools/package.json | 2 +- 13 files changed, 73 insertions(+), 17 deletions(-) delete mode 100644 .changeset/curly-masks-fly.md diff --git a/.changeset/curly-masks-fly.md b/.changeset/curly-masks-fly.md deleted file mode 100644 index 31548b93..00000000 --- a/.changeset/curly-masks-fly.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@terrazzo/plugin-sass": minor -"@terrazzo/token-tools": minor -"@terrazzo/plugin-css": minor -"@terrazzo/plugin-sass": minor -"@terrazzo/plugin-js": minor -"@terrazzo/parser": minor -"@terrazzo/cli": minor ---- - -⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index cebe5a8f..acf062d8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,17 @@ # @terrazzo/cli +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + +### Patch Changes + +- Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]: + - @terrazzo/token-tools@0.1.0 + - @terrazzo/parser@0.1.0 + ## 0.0.19 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d15896cd..ebb06fa7 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@terrazzo/cli", - "version": "0.0.19", + "version": "0.1.0", "description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.", "type": "module", "author": { diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index fba5e669..b33cc2ee 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,5 +1,16 @@ # @terrazzo/parser +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + +### Patch Changes + +- Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]: + - @terrazzo/token-tools@0.1.0 + ## 0.0.19 ### Patch Changes diff --git a/packages/parser/package.json b/packages/parser/package.json index 89470c29..c6e7669c 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@terrazzo/parser", - "version": "0.0.19", + "version": "0.1.0", "description": "Parser/validator for the Design Tokens Community Group (DTCG) standard.", "type": "module", "author": { diff --git a/packages/plugin-css/CHANGELOG.md b/packages/plugin-css/CHANGELOG.md index 381070b4..df9e1234 100644 --- a/packages/plugin-css/CHANGELOG.md +++ b/packages/plugin-css/CHANGELOG.md @@ -1,5 +1,18 @@ # @terrazzo/plugin-css +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + +### Patch Changes + +- Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]: + - @terrazzo/token-tools@0.1.0 + - @terrazzo/parser@0.1.0 + - @terrazzo/cli@0.1.0 + ## 0.0.11 ### Patch Changes diff --git a/packages/plugin-css/package.json b/packages/plugin-css/package.json index b3176cbe..c2cd101f 100644 --- a/packages/plugin-css/package.json +++ b/packages/plugin-css/package.json @@ -1,6 +1,6 @@ { "name": "@terrazzo/plugin-css", - "version": "0.0.11", + "version": "0.1.0", "description": "Convert DTCG tokens into CSS variables for use in any web application or native app with webview.", "type": "module", "author": { diff --git a/packages/plugin-js/CHANGELOG.md b/packages/plugin-js/CHANGELOG.md index 6a1b6221..966b9afa 100644 --- a/packages/plugin-js/CHANGELOG.md +++ b/packages/plugin-js/CHANGELOG.md @@ -1,5 +1,17 @@ # @terrazzo/plugin-js +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + +### Patch Changes + +- Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]: + - @terrazzo/token-tools@0.1.0 + - @terrazzo/cli@0.1.0 + ## 0.0.3 ### Patch Changes diff --git a/packages/plugin-js/package.json b/packages/plugin-js/package.json index fe3cc9a4..06c08968 100644 --- a/packages/plugin-js/package.json +++ b/packages/plugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@terrazzo/plugin-js", - "version": "0.0.3", + "version": "0.1.0", "description": "Generate JS, TS, and JSON from your design tokens schema (requires @terrazzo/cli)", "type": "module", "author": { diff --git a/packages/plugin-sass/CHANGELOG.md b/packages/plugin-sass/CHANGELOG.md index 9154b854..a42695ac 100644 --- a/packages/plugin-sass/CHANGELOG.md +++ b/packages/plugin-sass/CHANGELOG.md @@ -1,5 +1,18 @@ # @terrazzo/plugin-sass +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + +### Patch Changes + +- Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]: + - @terrazzo/token-tools@0.1.0 + - @terrazzo/plugin-css@0.1.0 + - @terrazzo/cli@0.1.0 + ## 0.0.3 ### Patch Changes diff --git a/packages/plugin-sass/package.json b/packages/plugin-sass/package.json index a4c57948..95f3157b 100644 --- a/packages/plugin-sass/package.json +++ b/packages/plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "@terrazzo/plugin-sass", "description": "Generate scss/sass from your design tokens schema (requires @terrazzo/cli)", - "version": "0.0.3", + "version": "0.1.0", "type": "module", "author": { "name": "Drew Powers", diff --git a/packages/token-tools/CHANGELOG.md b/packages/token-tools/CHANGELOG.md index c9b9bf10..4dddc73b 100644 --- a/packages/token-tools/CHANGELOG.md +++ b/packages/token-tools/CHANGELOG.md @@ -1,5 +1,11 @@ # @terrazzo/token-tools +## 0.1.0 + +### Minor Changes + +- [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244). + ## 0.0.6 ### Patch Changes diff --git a/packages/token-tools/package.json b/packages/token-tools/package.json index 90d3b82d..d41f4584 100644 --- a/packages/token-tools/package.json +++ b/packages/token-tools/package.json @@ -1,7 +1,7 @@ { "name": "@terrazzo/token-tools", "description": "Various utilities for token types", - "version": "0.0.9", + "version": "0.1.0", "author": { "name": "Drew Powers", "email": "drew@pow.rs"