Skip to content

Commit

Permalink
chore: release main (#644)
Browse files Browse the repository at this point in the history
🚀 Automated Release
---


<details><summary>ui-anchor: 1.0.1</summary>

##
[1.0.1](ui-anchor-v1.0.0...ui-anchor-v1.0.1)
(2024-09-16)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * @versini/ui-button bumped to 1.0.2
</details>

<details><summary>ui-button: 1.0.2</summary>

##
[1.0.2](ui-button-v1.0.1...ui-button-v1.0.2)
(2024-09-16)


### Bug Fixes

* **Button:** better exports
([#645](#645))
([2abb463](2abb463))
</details>

<details><summary>ui-components: 5.22.2</summary>

##
[5.22.2](ui-components-v5.22.1...ui-components-v5.22.2)
(2024-09-16)


### Bug Fixes

* **Anchor:** replacing internal Anchor with individual in main lib
([#642](#642))
([7afd5c9](7afd5c9))


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * @versini/ui-anchor bumped to 1.0.1
    * @versini/ui-button bumped to 1.0.2
</details>

<details><summary>ui-form: 1.3.13</summary>

##
[1.3.13](ui-form-v1.3.12...ui-form-v1.3.13)
(2024-09-16)


### Dependencies

* The following workspace dependencies were updated
  * devDependencies
    * @versini/ui-components bumped to 5.22.2
</details>

<details><summary>ui-system: 1.4.7</summary>

##
[1.4.7](ui-system-v1.4.6...ui-system-v1.4.7)
(2024-09-16)


### Dependencies

* The following workspace dependencies were updated
  * devDependencies
    * @versini/ui-components bumped to 5.22.2
</details>

---
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 <[email protected]>
  • Loading branch information
aversini and aversini authored Sep 16, 2024
1 parent 2abb463 commit cdc7c10
Show file tree
Hide file tree
Showing 14 changed files with 125 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"packages/ui-components": "5.22.1",
"packages/ui-components": "5.22.2",
"packages/ui-hooks": "4.1.3",
"packages/ui-system": "1.4.6",
"packages/ui-system": "1.4.7",
"packages/ui-private": "1.4.9",
"packages/ui-icons": "1.12.1",
"packages/ui-styles": "1.9.7",
"packages/ui-form": "1.3.12",
"packages/ui-form": "1.3.13",
"packages/ui-fingerprint": "1.0.1",
"packages/ui-button": "1.0.1",
"packages/ui-anchor": "1.0.0"
"packages/ui-button": "1.0.2",
"packages/ui-anchor": "1.0.1"
}
9 changes: 9 additions & 0 deletions packages/ui-anchor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [1.0.1](https://github.com/versini-org/ui-components/compare/ui-anchor-v1.0.0...ui-anchor-v1.0.1) (2024-09-16)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @versini/ui-button bumped to 1.0.2

## 1.0.0 (2024-09-16)


Expand Down
10 changes: 7 additions & 3 deletions packages/ui-anchor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versini/ui-anchor",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"author": "Arno Versini",
"publishConfig": {
Expand All @@ -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",
Expand Down Expand Up @@ -44,5 +46,7 @@
"@versini/ui-button": "workspace:../ui-button",
"tailwindcss": "3.4.11"
},
"sideEffects": ["**/*.css"]
"sideEffects": [
"**/*.css"
]
}
7 changes: 7 additions & 0 deletions packages/ui-button/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.2](https://github.com/versini-org/ui-components/compare/ui-button-v1.0.1...ui-button-v1.0.2) (2024-09-16)


### Bug Fixes

* **Button:** better exports ([#645](https://github.com/versini-org/ui-components/issues/645)) ([2abb463](https://github.com/versini-org/ui-components/commit/2abb463cee00aeaa4fc1a3238605d89398a431f8))

## [1.0.1](https://github.com/versini-org/ui-components/compare/ui-button-v1.0.0...ui-button-v1.0.1) (2024-09-15)


Expand Down
2 changes: 1 addition & 1 deletion packages/ui-button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versini/ui-button",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",
"author": "Arno Versini",
"publishConfig": {
Expand Down
15 changes: 15 additions & 0 deletions packages/ui-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

# Changelog

## [5.22.2](https://github.com/versini-org/ui-components/compare/ui-components-v5.22.1...ui-components-v5.22.2) (2024-09-16)


### Bug Fixes

* **Anchor:** replacing internal Anchor with individual in main lib ([#642](https://github.com/versini-org/ui-components/issues/642)) ([7afd5c9](https://github.com/versini-org/ui-components/commit/7afd5c94f3f922d901f95e661049ad4c73a927c4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @versini/ui-anchor bumped to 1.0.1
* @versini/ui-button bumped to 1.0.2

## [5.22.1](https://github.com/versini-org/ui-components/compare/ui-components-v5.22.0...ui-components-v5.22.1) (2024-09-15)


Expand Down
10 changes: 7 additions & 3 deletions packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versini/ui-components",
"version": "5.22.1",
"version": "5.22.2",
"license": "MIT",
"author": "Arno Versini",
"publishConfig": {
Expand All @@ -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",
Expand Down Expand Up @@ -53,5 +55,7 @@
"clsx": "2.1.1",
"tailwindcss": "3.4.11"
},
"sideEffects": ["**/*.css"]
"sideEffects": [
"**/*.css"
]
}
20 changes: 20 additions & 0 deletions packages/ui-components/stats/stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -998,5 +998,25 @@
"limit": "67 KB",
"passed": true
}
},
"5.22.2": {
"../bundlesize/dist/components/assets/style.css": {
"fileSize": 42836,
"fileSizeGzip": 6923,
"limit": "8 KB",
"passed": true
},
"../bundlesize/dist/components/assets/index.js": {
"fileSize": 44341,
"fileSizeGzip": 11355,
"limit": "12 KB",
"passed": true
},
"../bundlesize/dist/components/assets/vendor.js": {
"fileSize": 202712,
"fileSizeGzip": 67201,
"limit": "67 KB",
"passed": true
}
}
}
9 changes: 9 additions & 0 deletions packages/ui-form/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

# Changelog

## [1.3.13](https://github.com/versini-org/ui-components/compare/ui-form-v1.3.12...ui-form-v1.3.13) (2024-09-16)


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @versini/ui-components bumped to 5.22.2

## [1.3.12](https://github.com/versini-org/ui-components/compare/ui-form-v1.3.11...ui-form-v1.3.12) (2024-09-15)


Expand Down
2 changes: 1 addition & 1 deletion packages/ui-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versini/ui-form",
"version": "1.3.12",
"version": "1.3.13",
"license": "MIT",
"author": "Arno Versini",
"publishConfig": {
Expand Down
14 changes: 14 additions & 0 deletions packages/ui-form/stats/stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,5 +250,19 @@
"limit": "67 KB",
"passed": true
}
},
"1.3.13": {
"../bundlesize/dist/form/assets/index.js": {
"fileSize": 17769,
"fileSizeGzip": 5319,
"limit": "20 KB",
"passed": true
},
"../bundlesize/dist/form/assets/vendor.js": {
"fileSize": 142129,
"fileSizeGzip": 45524,
"limit": "67 KB",
"passed": true
}
}
}
9 changes: 9 additions & 0 deletions packages/ui-system/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

# Changelog

## [1.4.7](https://github.com/versini-org/ui-components/compare/ui-system-v1.4.6...ui-system-v1.4.7) (2024-09-16)


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @versini/ui-components bumped to 5.22.2

## [1.4.6](https://github.com/versini-org/ui-components/compare/ui-system-v1.4.5...ui-system-v1.4.6) (2024-09-15)


Expand Down
2 changes: 1 addition & 1 deletion packages/ui-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versini/ui-system",
"version": "1.4.6",
"version": "1.4.7",
"license": "MIT",
"author": "Arno Versini",
"publishConfig": {
Expand Down
20 changes: 20 additions & 0 deletions packages/ui-system/stats/stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,5 +278,25 @@
"limit": "46 KB",
"passed": true
}
},
"1.4.7": {
"../bundlesize/dist/system/assets/style.css": {
"fileSize": 51950,
"fileSizeGzip": 7861,
"limit": "8 KB",
"passed": true
},
"../bundlesize/dist/system/assets/index.js": {
"fileSize": 5602,
"fileSizeGzip": 1979,
"limit": "3 KB",
"passed": true
},
"../bundlesize/dist/system/assets/vendor.js": {
"fileSize": 142129,
"fileSizeGzip": 45524,
"limit": "46 KB",
"passed": true
}
}
}

0 comments on commit cdc7c10

Please sign in to comment.