From ca639bfbead3c61e1c5c8a50f403358afdf47b9d Mon Sep 17 00:00:00 2001 From: Arno V Date: Tue, 17 Sep 2024 15:54:11 -0400 Subject: [PATCH] chore: release main (#656) :rocket: Automated Release ---
ui-components: 5.25.0 ## [5.25.0](https://github.com/versini-org/ui-components/compare/ui-components-v5.24.1...ui-components-v5.25.0) (2024-09-17) ### Features * **Footer:** extracting Footer as a standalone package ([#655](https://github.com/versini-org/ui-components/issues/655)) ([8808a2a](https://github.com/versini-org/ui-components/commit/8808a2a3f0490894a072f8fe1f3e4bd8bf94ed6f)) ### Dependencies * The following workspace dependencies were updated * dependencies * @versini/ui-footer bumped to 1.0.0
ui-footer: 1.0.0 ## 1.0.0 (2024-09-17) ### Features * **Footer:** extracting Footer as a standalone package ([#655](https://github.com/versini-org/ui-components/issues/655)) ([8808a2a](https://github.com/versini-org/ui-components/commit/8808a2a3f0490894a072f8fe1f3e4bd8bf94ed6f))
--- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: aversini --- .release-please-manifest.json | 4 ++-- packages/ui-components/CHANGELOG.md | 14 ++++++++++++++ packages/ui-components/package.json | 10 +++++++--- packages/ui-components/stats/stats.json | 20 ++++++++++++++++++++ packages/ui-footer/CHANGELOG.md | 8 ++++++++ packages/ui-footer/package.json | 10 +++++++--- 6 files changed, 58 insertions(+), 8 deletions(-) create mode 100644 packages/ui-footer/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 741676c1..cc3a2c39 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "packages/ui-components": "5.24.1", + "packages/ui-components": "5.25.0", "packages/ui-hooks": "4.1.3", "packages/ui-system": "1.4.10", "packages/ui-private": "1.4.9", @@ -11,5 +11,5 @@ "packages/ui-anchor": "1.1.0", "packages/ui-bubble": "1.0.0", "packages/ui-card": "1.0.0", - "packages/ui-footer": "0.0.0" + "packages/ui-footer": "1.0.0" } diff --git a/packages/ui-components/CHANGELOG.md b/packages/ui-components/CHANGELOG.md index 231a7c3d..30fe008b 100644 --- a/packages/ui-components/CHANGELOG.md +++ b/packages/ui-components/CHANGELOG.md @@ -192,6 +192,20 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # Changelog +## [5.25.0](https://github.com/versini-org/ui-components/compare/ui-components-v5.24.1...ui-components-v5.25.0) (2024-09-17) + + +### Features + +* **Footer:** extracting Footer as a standalone package ([#655](https://github.com/versini-org/ui-components/issues/655)) ([8808a2a](https://github.com/versini-org/ui-components/commit/8808a2a3f0490894a072f8fe1f3e4bd8bf94ed6f)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @versini/ui-footer bumped to 1.0.0 + ## [5.24.1](https://github.com/versini-org/ui-components/compare/ui-components-v5.24.0...ui-components-v5.24.1) (2024-09-17) diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 95781f16..f5e1a8f8 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@versini/ui-components", - "version": "5.24.1", + "version": "5.25.0", "license": "MIT", "author": "Arno Versini", "publishConfig": { @@ -14,7 +14,9 @@ "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build:check": "tsc", "build:js": "vite build", @@ -56,5 +58,7 @@ "clsx": "2.1.1", "tailwindcss": "3.4.11" }, - "sideEffects": ["**/*.css"] + "sideEffects": [ + "**/*.css" + ] } diff --git a/packages/ui-components/stats/stats.json b/packages/ui-components/stats/stats.json index 1ec4e1bc..0046b743 100644 --- a/packages/ui-components/stats/stats.json +++ b/packages/ui-components/stats/stats.json @@ -1078,5 +1078,25 @@ "limit": "67 KB", "passed": true } + }, + "5.25.0": { + "../bundlesize/dist/components/assets/style.css": { + "fileSize": 37318, + "fileSizeGzip": 6204, + "limit": "8 KB", + "passed": true + }, + "../bundlesize/dist/components/assets/index.js": { + "fileSize": 56015, + "fileSizeGzip": 11099, + "limit": "12 KB", + "passed": true + }, + "../bundlesize/dist/components/assets/vendor.js": { + "fileSize": 202712, + "fileSizeGzip": 67201, + "limit": "67 KB", + "passed": true + } } } diff --git a/packages/ui-footer/CHANGELOG.md b/packages/ui-footer/CHANGELOG.md new file mode 100644 index 00000000..67ec0682 --- /dev/null +++ b/packages/ui-footer/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 1.0.0 (2024-09-17) + + +### Features + +* **Footer:** extracting Footer as a standalone package ([#655](https://github.com/versini-org/ui-components/issues/655)) ([8808a2a](https://github.com/versini-org/ui-components/commit/8808a2a3f0490894a072f8fe1f3e4bd8bf94ed6f)) diff --git a/packages/ui-footer/package.json b/packages/ui-footer/package.json index d7d4feed..b1b728c1 100644 --- a/packages/ui-footer/package.json +++ b/packages/ui-footer/package.json @@ -1,6 +1,6 @@ { "name": "@versini/ui-footer", - "version": "0.0.0", + "version": "1.0.0", "license": "MIT", "author": "Arno Versini", "publishConfig": { @@ -14,7 +14,9 @@ "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build:check": "tsc", "build:js": "vite build", @@ -43,5 +45,7 @@ "@versini/ui-private": "workspace:../ui-private", "tailwindcss": "3.4.11" }, - "sideEffects": ["**/*.css"] + "sideEffects": [ + "**/*.css" + ] }