From 21411a723f5807808f4da057aea18b062f3c8e8d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Jul 2026 02:44:15 +0000 Subject: [PATCH] Version packages --- .changeset/add-composables-app.md | 5 ----- .changeset/add-composables-screen.md | 5 ----- .changeset/add-ios-team-id-init.md | 5 ----- .changeset/add-navigation3-cli-starter.md | 5 ----- .changeset/fix-link-button-bounce.md | 5 ----- .changeset/fix-link-button-content-color.md | 5 ----- .changeset/fix-textfield-slots.md | 5 ----- gradle/libs.versions.toml | 4 ++-- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 2 +- packages/ui/CHANGELOG.md | 16 ++++++++++++++++ packages/ui/package.json | 2 +- 12 files changed, 28 insertions(+), 39 deletions(-) delete mode 100644 .changeset/add-composables-app.md delete mode 100644 .changeset/add-composables-screen.md delete mode 100644 .changeset/add-ios-team-id-init.md delete mode 100644 .changeset/add-navigation3-cli-starter.md delete mode 100644 .changeset/fix-link-button-bounce.md delete mode 100644 .changeset/fix-link-button-content-color.md delete mode 100644 .changeset/fix-textfield-slots.md diff --git a/.changeset/add-composables-app.md b/.changeset/add-composables-app.md deleted file mode 100644 index cff7b4d..0000000 --- a/.changeset/add-composables-app.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@composables/ui": minor ---- - -Introduce new `ComposablesApp` composable. It applies theming and wires important stuff that are required by the rest of the components. diff --git a/.changeset/add-composables-screen.md b/.changeset/add-composables-screen.md deleted file mode 100644 index 58cc818..0000000 --- a/.changeset/add-composables-screen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@composables/ui": minor ---- - -Add `ComposablesScreen` for applying screen background and content colors. diff --git a/.changeset/add-ios-team-id-init.md b/.changeset/add-ios-team-id-init.md deleted file mode 100644 index b044aa9..0000000 --- a/.changeset/add-ios-team-id-init.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"composables-cli": minor ---- - -Add a new --ios-team-id param to init for ios, so that you can provide the TEAM_ID when creating a new ios app. This is required when running on a physical device. diff --git a/.changeset/add-navigation3-cli-starter.md b/.changeset/add-navigation3-cli-starter.md deleted file mode 100644 index 12a94a6..0000000 --- a/.changeset/add-navigation3-cli-starter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"composables-cli": minor ---- - -Add Navigation 3 as the navigation library of generated apps. diff --git a/.changeset/fix-link-button-bounce.md b/.changeset/fix-link-button-bounce.md deleted file mode 100644 index 6b9300c..0000000 --- a/.changeset/fix-link-button-bounce.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@composables/ui": patch ---- - -Make link buttons use the same press bounce as the rest of the button styles. diff --git a/.changeset/fix-link-button-content-color.md b/.changeset/fix-link-button-content-color.md deleted file mode 100644 index 07aceb4..0000000 --- a/.changeset/fix-link-button-content-color.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@composables/ui": patch ---- - -Set button link color to primary diff --git a/.changeset/fix-textfield-slots.md b/.changeset/fix-textfield-slots.md deleted file mode 100644 index 3dcdc77..0000000 --- a/.changeset/fix-textfield-slots.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@composables/ui": patch ---- - -Fix a bug where focusing on `TextField`'s leading or trailing content and then typing (via hardware keyboard) would cause the field to consume the keypresses. diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7d3895d..6b0b989 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] #noinspection UnusedVersionCatalogEntry -ui = "0.2.0" -composables-cli = "0.10.1" +ui = "0.3.0" +composables-cli = "0.11.0" unstyled = "2.8.0" compose = "1.11.1" kotlin = "2.4.0" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 686748f..3813592 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # composables-cli +## 0.11.0 + +### Minor Changes + +- [#26](https://github.com/composablehorizons/composables-ui/pull/26) [`77dab30`](https://github.com/composablehorizons/composables-ui/commit/77dab30ff3fb5601b1bcb18ffcecc89e7c1d1c3a) Thanks [@alexstyl](https://github.com/alexstyl)! - Add a new --ios-team-id param to init for ios, so that you can provide the TEAM_ID when creating a new ios app. This is required when running on a physical device. + +- [#25](https://github.com/composablehorizons/composables-ui/pull/25) [`ef8db40`](https://github.com/composablehorizons/composables-ui/commit/ef8db40d09cb980acf15075151b4b5797cbf62a1) Thanks [@alexstyl](https://github.com/alexstyl)! - Add Navigation 3 as the navigation library of generated apps. + ## 0.10.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index edf1828..dd93046 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "composables-cli", - "version": "0.10.1", + "version": "0.11.0", "description": "Composables CLI", "license": "MIT", "funding": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 1a8629d..e3afefe 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,21 @@ # @composables/ui +## 0.3.0 + +### Minor Changes + +- [`ec7f6ad`](https://github.com/composablehorizons/composables-ui/commit/ec7f6ad69edfda2fc5d3c0e4dbc81705a854eeaf) Thanks [@alexstyl](https://github.com/alexstyl)! - Introduce new `ComposablesApp` composable. It applies theming and wires important stuff that are required by the rest of the components. + +- [`25cbb8a`](https://github.com/composablehorizons/composables-ui/commit/25cbb8a3e8666a2af90428dfc2dbfbc01c6f9f9b) Thanks [@alexstyl](https://github.com/alexstyl)! - Add `ComposablesScreen` for applying screen background and content colors. + +### Patch Changes + +- [#21](https://github.com/composablehorizons/composables-ui/pull/21) [`5207ce8`](https://github.com/composablehorizons/composables-ui/commit/5207ce88adb1b19c862f70b0612198b0e8b5d206) Thanks [@alexstyl](https://github.com/alexstyl)! - Make link buttons use the same press bounce as the rest of the button styles. + +- [`5317c45`](https://github.com/composablehorizons/composables-ui/commit/5317c45ff2856c189c2b0c822e04df36a885c314) Thanks [@alexstyl](https://github.com/alexstyl)! - Set button link color to primary + +- [`fbf61ec`](https://github.com/composablehorizons/composables-ui/commit/fbf61ec95a64436203343a78f4a29fa785a56cd6) Thanks [@alexstyl](https://github.com/alexstyl)! - Fix a bug where focusing on `TextField`'s leading or trailing content and then typing (via hardware keyboard) would cause the field to consume the keypresses. + ## 0.2.0 ### Minor Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index 17cc026..5835073 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@composables/ui", - "version": "0.2.0", + "version": "0.3.0", "private": true, "description": "Release metadata for Composables UI Maven artifacts." }