Skip to content

Commit

Permalink
[ci] release (#203)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Mar 3, 2024
1 parent eecdee6 commit 4c6b2f7
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 22 deletions.
5 changes: 0 additions & 5 deletions .changeset/fast-wolves-shake.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/hip-llamas-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-rats-grow.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @cobalt-ui/cli

## 1.7.1

### Patch Changes

- [#202](https://github.com/drwpow/cobalt-ui/pull/202) [`eecdee6dd67315fcf087c9daa70d703bff6c7490`](https://github.com/drwpow/cobalt-ui/commit/eecdee6dd67315fcf087c9daa70d703bff6c7490) Thanks [@drwpow](https://github.com/drwpow)! - Throw error on missing tokens.json

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cobalt-ui/cli",
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
"version": "1.7.0",
"version": "1.7.1",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "^1.x"
"@cobalt-ui/cli": "^1.7.1"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "1.x"
"@cobalt-ui/cli": "1.7.1"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.3"
Expand Down
16 changes: 16 additions & 0 deletions packages/plugin-sass/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @cobalt-ui/plugin-sass

## 1.8.0

### Minor Changes

- [#202](https://github.com/drwpow/cobalt-ui/pull/202) [`eecdee6dd67315fcf087c9daa70d703bff6c7490`](https://github.com/drwpow/cobalt-ui/commit/eecdee6dd67315fcf087c9daa70d703bff6c7490) Thanks [@drwpow](https://github.com/drwpow)! - Fix collision of mode names if a user has a mode called `"default"`, changing the internal selector to `"."` (a single dot).

`"."` will be used more often in the upcoming [2.0 API](https://github.com/drwpow/cobalt-ui/issues/201), chosen because it’s easy to type/reference, uses illegal characters (therefore consumers can’t use it, but internally we know what it means), and also because it matches [Node’s ESM implementation for the default import](https://nodejs.org/docs/latest/api/esm.html#resolution-algorithm-specification), so it will be familiar/expected for some developers.

### Patch Changes

- [#202](https://github.com/drwpow/cobalt-ui/pull/202) [`eecdee6dd67315fcf087c9daa70d703bff6c7490`](https://github.com/drwpow/cobalt-ui/commit/eecdee6dd67315fcf087c9daa70d703bff6c7490) Thanks [@drwpow](https://github.com/drwpow)! - Fix plugin-sass mode generation

- Updated dependencies [[`eecdee6dd67315fcf087c9daa70d703bff6c7490`](https://github.com/drwpow/cobalt-ui/commit/eecdee6dd67315fcf087c9daa70d703bff6c7490)]:
- @cobalt-ui/cli@1.7.1
- @cobalt-ui/plugin-css@1.7.3

## 2.0.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-sass/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cobalt-ui/plugin-sass",
"description": "Generate scss/sass from your design tokens schema (requires @cobalt-ui/cli)",
"version": "1.7.1",
"version": "1.8.0",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
Expand Down Expand Up @@ -36,7 +36,7 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "^1.x",
"@cobalt-ui/cli": "^1.7.1",
"@cobalt-ui/plugin-css": "^1.7.3"
},
"dependencies": {
Expand Down

0 comments on commit 4c6b2f7

Please sign in to comment.