From db1bf9025b5016b4622fe8a4e99cce9b471b4e6e Mon Sep 17 00:00:00 2001 From: Hamza Miloud Amar Date: Sun, 8 Sep 2024 20:01:51 +0100 Subject: [PATCH] chore: add new patch release to core, hooks, and utils --- .changeset/eleven-lies-kick.md | 29 ---------------------------- packages/pillar-core/CHANGELOG.md | 31 ++++++++++++++++++++++++++++++ packages/pillar-core/package.json | 4 ++-- packages/pillar-hooks/CHANGELOG.md | 31 ++++++++++++++++++++++++++++++ packages/pillar-hooks/package.json | 2 +- packages/pillar-utils/CHANGELOG.md | 28 +++++++++++++++++++++++++++ packages/pillar-utils/package.json | 2 +- 7 files changed, 94 insertions(+), 33 deletions(-) delete mode 100644 .changeset/eleven-lies-kick.md diff --git a/.changeset/eleven-lies-kick.md b/.changeset/eleven-lies-kick.md deleted file mode 100644 index 5e8a743e..00000000 --- a/.changeset/eleven-lies-kick.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'@pillar-ui/hooks': patch -'@pillar-ui/utils': patch -'@pillar-ui/core': patch ---- - -# Release Notes v1.x.x - -## Enhancements - -- **Core:** - - - Added new utility functions to the core project, promoting code reusability and maintainability. - - Added icons to the core, streamlining asset management. - -- **Pillar:** - - Refactored `pillar-ui/hooks` to be a peer dependency of `pillar core`, improving modularity and flexibility. - - Improved the `cx` style function to automatically remove falsy values, simplifying styling. - - Enhanced the `truncate` props to support new styling options, offering greater customization. - - Refactored typography to use the new utils from the core, ensuring consistency. - - Added new truncate classes, providing additional styling options. - -## Bug Fixes - -- Fixed an issue where the `truncate` props didn't support the new styling. -- Fixed an issue in the `cx` style function where falsy values were not removed. -- Refactored the typography component to remove the `variant` prop, streamlining the API. - -**Note:** This release focuses on refactoring and improving the core and UI components for better code quality, maintainability, and styling flexibility. New features and enhancements will be introduced in future releases. diff --git a/packages/pillar-core/CHANGELOG.md b/packages/pillar-core/CHANGELOG.md index 57897726..768e5624 100644 --- a/packages/pillar-core/CHANGELOG.md +++ b/packages/pillar-core/CHANGELOG.md @@ -1,5 +1,36 @@ # @pillar/core +## 0.10.2 + +### Patch Changes + +- d034bc0: # Release Notes v1.x.x + + ## Enhancements + + - **Core:** + + - Added new utility functions to the core project, promoting code reusability and maintainability. + - Added icons to the core, streamlining asset management. + + - **Pillar:** + - Refactored `pillar-ui/hooks` to be a peer dependency of `pillar core`, improving modularity and flexibility. + - Improved the `cx` style function to automatically remove falsy values, simplifying styling. + - Enhanced the `truncate` props to support new styling options, offering greater customization. + - Refactored typography to use the new utils from the core, ensuring consistency. + - Added new truncate classes, providing additional styling options. + + ## Bug Fixes + + - Fixed an issue where the `truncate` props didn't support the new styling. + - Fixed an issue in the `cx` style function where falsy values were not removed. + - Refactored the typography component to remove the `variant` prop, streamlining the API. + + **Note:** This release focuses on refactoring and improving the core and UI components for better code quality, maintainability, and styling flexibility. New features and enhancements will be introduced in future releases. + +- Updated dependencies [d034bc0] + - @pillar-ui/hooks@0.7.2 + ## 0.10.1 ### Patch Changes diff --git a/packages/pillar-core/package.json b/packages/pillar-core/package.json index 91f2622b..24e6bacf 100644 --- a/packages/pillar-core/package.json +++ b/packages/pillar-core/package.json @@ -1,6 +1,6 @@ { "name": "@pillar-ui/core", - "version": "0.10.1", + "version": "0.10.2", "description": "@pillar-ui/core is a lightweight and comprehensive UI component library packed with reusable and customizable UI components designed for modern web development. Our components adhere to best practices, ensuring a consistent and accessible user experience across your applications, without sacrificing performance.", "author": { "name": "Hamza Miloud Amar", @@ -60,7 +60,7 @@ "peerDependencies": { "react": "^18.0.0", "react-dom": "^18.0.0", - "@pillar-ui/hooks": "^0.7.1" + "@pillar-ui/hooks": "^0.7.2" }, "devDependencies": { "@pillar-ui/eslint": "*", diff --git a/packages/pillar-hooks/CHANGELOG.md b/packages/pillar-hooks/CHANGELOG.md index 20429f14..41810401 100644 --- a/packages/pillar-hooks/CHANGELOG.md +++ b/packages/pillar-hooks/CHANGELOG.md @@ -1,5 +1,36 @@ # @pillar/hooks +## 0.7.2 + +### Patch Changes + +- d034bc0: # Release Notes v1.x.x + + ## Enhancements + + - **Core:** + + - Added new utility functions to the core project, promoting code reusability and maintainability. + - Added icons to the core, streamlining asset management. + + - **Pillar:** + - Refactored `pillar-ui/hooks` to be a peer dependency of `pillar core`, improving modularity and flexibility. + - Improved the `cx` style function to automatically remove falsy values, simplifying styling. + - Enhanced the `truncate` props to support new styling options, offering greater customization. + - Refactored typography to use the new utils from the core, ensuring consistency. + - Added new truncate classes, providing additional styling options. + + ## Bug Fixes + + - Fixed an issue where the `truncate` props didn't support the new styling. + - Fixed an issue in the `cx` style function where falsy values were not removed. + - Refactored the typography component to remove the `variant` prop, streamlining the API. + + **Note:** This release focuses on refactoring and improving the core and UI components for better code quality, maintainability, and styling flexibility. New features and enhancements will be introduced in future releases. + +- Updated dependencies [d034bc0] + - @pillar-ui/utils@0.8.3 + ## 0.7.1 ### Patch Changes diff --git a/packages/pillar-hooks/package.json b/packages/pillar-hooks/package.json index 58686676..0610e32b 100644 --- a/packages/pillar-hooks/package.json +++ b/packages/pillar-hooks/package.json @@ -12,7 +12,7 @@ "name": "Hamza Miloud Amar", "email": "hamzamiloudamar@gmail.com" }, - "version": "0.7.1", + "version": "0.7.2", "sideEffects": false, "license": "MIT", "main": "./dist/index.js", diff --git a/packages/pillar-utils/CHANGELOG.md b/packages/pillar-utils/CHANGELOG.md index 58cee257..a118fe8d 100644 --- a/packages/pillar-utils/CHANGELOG.md +++ b/packages/pillar-utils/CHANGELOG.md @@ -1,5 +1,33 @@ # @pillar/utils +## 0.8.3 + +### Patch Changes + +- d034bc0: # Release Notes v1.x.x + + ## Enhancements + + - **Core:** + + - Added new utility functions to the core project, promoting code reusability and maintainability. + - Added icons to the core, streamlining asset management. + + - **Pillar:** + - Refactored `pillar-ui/hooks` to be a peer dependency of `pillar core`, improving modularity and flexibility. + - Improved the `cx` style function to automatically remove falsy values, simplifying styling. + - Enhanced the `truncate` props to support new styling options, offering greater customization. + - Refactored typography to use the new utils from the core, ensuring consistency. + - Added new truncate classes, providing additional styling options. + + ## Bug Fixes + + - Fixed an issue where the `truncate` props didn't support the new styling. + - Fixed an issue in the `cx` style function where falsy values were not removed. + - Refactored the typography component to remove the `variant` prop, streamlining the API. + + **Note:** This release focuses on refactoring and improving the core and UI components for better code quality, maintainability, and styling flexibility. New features and enhancements will be introduced in future releases. + ## 0.8.2 ### Patch Changes diff --git a/packages/pillar-utils/package.json b/packages/pillar-utils/package.json index f46d8c2a..1273db4d 100644 --- a/packages/pillar-utils/package.json +++ b/packages/pillar-utils/package.json @@ -1,6 +1,6 @@ { "name": "@pillar-ui/utils", - "version": "0.8.2", + "version": "0.8.3", "sideEffects": false, "description": "A collection of utility functions and tools to assist with common tasks and improve the efficiency of web development. These utilities are carefully crafted to enhance productivity and streamline the development process.", "keywords": [