From 162db497adddcb6864e53f41786106f826b4d36f Mon Sep 17 00:00:00 2001 From: mnajdova Date: Fri, 19 Apr 2024 09:49:20 +0200 Subject: [PATCH 1/2] [core] Update the versions & changelog to reflect the last release --- CHANGELOG.md | 55 +++++++++++++------ package.json | 2 +- .../pigment-css-nextjs-plugin/package.json | 2 +- packages/pigment-css-react/package.json | 2 +- packages/pigment-css-unplugin/package.json | 2 +- packages/pigment-css-vite-plugin/package.json | 2 +- 6 files changed, 43 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62883efb..cc4369e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # [Versions](https://mui.com/versions/) +## v0.0.7 + + + +_Apr 17, 2024_ + +A big thanks to the 3 contributors who made this release possible. Here is the highlight of this release โœจ: + +- ๐Ÿš€ Updated the sx transformation to also support components created with emotion + +### `@pigment-css/react@0.0.7` + +- Patch WyW's WeakRef usage (#41909) @DiegoAndai +- Implement sx transform for system components (#41861) @brijeshb42 + +### Docs + +- [pigment-css] Fixed README typos (#41870) @MohammadShehadeh + +All contributors of this release in alphabetical order: @brijeshb42, @DiegoAndai, @MohammadShehadeh + ## v0.0.6 @@ -11,21 +32,21 @@ This release was mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements ### `@pigment-css/react@0.0.6` -- ​[core] Remove `muiName` during eval phase (#41811) @brijeshb42 +- [core] Remove `muiName` during eval phase (#41811) @brijeshb42 ### `@pigment-css/nextjs-plugin@0.0.6` -- ​[nextjs] Handle file references passed through imports (#41817) @brijeshb42 -- ​[nextjs] Allow usage of url() CSS function (#41758) @brijeshb42 +- [nextjs] Handle file references passed through imports (#41817) @brijeshb42 +- [nextjs] Allow usage of url() CSS function (#41758) @brijeshb42 ### Docs -- ​[pigment-css] Fix README typo (#41808) @aarongarciah -- ​[pigment-css] Fix output on dynamic styles example (#41805) @aarongarciah +- [pigment-css] Fix README typo (#41808) @aarongarciah +- [pigment-css] Fix output on dynamic styles example (#41805) @aarongarciah ### Core -- ​[core] Remove unused files (#41818) @mnajdova +- [core] Remove unused files (#41818) @mnajdova All contributors of this release in alphabetical order: @aarongarciah, @brijeshb42, @zanivan @@ -97,17 +118,17 @@ This release was mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements ### `@pigment-css/react@0.0.3` -- ​Add Box component (#41451) @brijeshb42 +- Add Box component (#41451) @brijeshb42 ### `pigment-css/nextjs-plugin@0.0.3` -- ​Fix alias resolver (#41494) @brijeshb42 -- ​Follow-up to #41494 (#41502) @brijeshb42 +- Fix alias resolver (#41494) @brijeshb42 +- Follow-up to #41494 (#41502) @brijeshb42 ### Docs -- ​[pigment-css] Add media query guide (#41473) @siriwatknp -- ​[pigment-css] Fixing location of the ExtendTheme type in the docs (#41499) @jherr +- [pigment-css] Add media query guide (#41473) @siriwatknp +- [pigment-css] Fixing location of the ExtendTheme type in the docs (#41499) @jherr All contributors of this release in alphabetical order: @brijeshb42, @jherr, @siriwatknp @@ -155,14 +176,14 @@ This is the first public release of the zero-runtime CSS-in-JS library, Pigment ### `@pigment-css/react@0.0.1`, `@pigment-css/nextjs-plugin@0.0.1`, `@pigment-css/vite-plugin@0.0.1`, & `@pigment-css/unplugin@0.0.1` -- ​[pigment-css] Add support for styled tagged-template literals (#41268) @brijeshb42 -- ​[pigment-css] Move extendTheme to already existing @pigment-css/react/utils (#41254) @brijeshb42 -- ​[pigment-css] Remove `object` intersection from CSS Fallback (#41271) @siriwatknp -- ​[pigment-css] Minor wording changes in README (#41253) @brijeshb42 -- ​[pigment-css] Prepare zero-runtime packages for public release (#41226) @brijeshb42 +- [pigment-css] Add support for styled tagged-template literals (#41268) @brijeshb42 +- [pigment-css] Move extendTheme to already existing @pigment-css/react/utils (#41254) @brijeshb42 +- [pigment-css] Remove `object` intersection from CSS Fallback (#41271) @siriwatknp +- [pigment-css] Minor wording changes in README (#41253) @brijeshb42 +- [pigment-css] Prepare zero-runtime packages for public release (#41226) @brijeshb42 ### Docs -- ​[pigment-css] Add a Why section on the README (#41284) @danilo-leal +- [pigment-css] Add a Why section on the README (#41284) @danilo-leal All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @siriwatknp diff --git a/package.json b/package.json index 97dbcea2..3371ed5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pigment-css/monorepo", - "version": "0.0.6", + "version": "0.0.7", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", diff --git a/packages/pigment-css-nextjs-plugin/package.json b/packages/pigment-css-nextjs-plugin/package.json index 1758cc00..ff2dc2a5 100644 --- a/packages/pigment-css-nextjs-plugin/package.json +++ b/packages/pigment-css-nextjs-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@pigment-css/nextjs-plugin", - "version": "0.0.6", + "version": "0.0.7", "main": "build/index.js", "module": "build/index.mjs", "types": "build/index.d.ts", diff --git a/packages/pigment-css-react/package.json b/packages/pigment-css-react/package.json index 65973ae2..9ab9051c 100644 --- a/packages/pigment-css-react/package.json +++ b/packages/pigment-css-react/package.json @@ -1,6 +1,6 @@ { "name": "@pigment-css/react", - "version": "0.0.6", + "version": "0.0.7", "main": "build/index.js", "module": "build/index.mjs", "types": "build/index.d.ts", diff --git a/packages/pigment-css-unplugin/package.json b/packages/pigment-css-unplugin/package.json index 31ce87cd..69f7a831 100644 --- a/packages/pigment-css-unplugin/package.json +++ b/packages/pigment-css-unplugin/package.json @@ -1,6 +1,6 @@ { "name": "@pigment-css/unplugin", - "version": "0.0.6", + "version": "0.0.7", "main": "build/index.js", "module": "build/index.mjs", "types": "build/index.d.ts", diff --git a/packages/pigment-css-vite-plugin/package.json b/packages/pigment-css-vite-plugin/package.json index a2510ff4..c903660b 100644 --- a/packages/pigment-css-vite-plugin/package.json +++ b/packages/pigment-css-vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@pigment-css/vite-plugin", - "version": "0.0.6", + "version": "0.0.7", "main": "build/index.js", "module": "build/index.mjs", "types": "build/index.d.ts", From 51a2f8c6c2b672332af7705f261baf22fa853a90 Mon Sep 17 00:00:00 2001 From: mnajdova Date: Fri, 19 Apr 2024 12:35:59 +0200 Subject: [PATCH 2/2] [docs] Fix wrong header hash --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66147611..e159820c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Pigmentย CSS is a zero-runtime CSS-in-JS library that extracts the colocated styles to their own CSS files at build time. - [Getting started](#getting-started) - - [Why this project exists?](#why-choose-pigment-css) + - [Why this project exists?](#why-choose-pigmentcss) - [Start with Next.js](#start-with-nextjs) - [Start with Vite](#start-with-vite) - [Basic usage](#basic-usage)