From dbf06faae1474e6eaf83860af02517526365892f Mon Sep 17 00:00:00 2001 From: jer3m01 Date: Wed, 1 May 2024 04:15:36 +0200 Subject: [PATCH] chore: prepare release `0.13.0` (#393) --- .changeset/long-pigs-hunt.md | 17 +++++++++++++++++ apps/docs/src/VERSIONS.ts | 3 ++- apps/docs/src/routes/docs/changelog/0-13-x.mdx | 15 +++++++++++++++ 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 .changeset/long-pigs-hunt.md create mode 100644 apps/docs/src/routes/docs/changelog/0-13-x.mdx diff --git a/.changeset/long-pigs-hunt.md b/.changeset/long-pigs-hunt.md new file mode 100644 index 00000000..ff4579d5 --- /dev/null +++ b/.changeset/long-pigs-hunt.md @@ -0,0 +1,17 @@ +--- +"@kobalte/core": minor +--- + +## v0.13.0 (May 1, 2024) + +**Breaking changes** + +- [#381](https://github.com/kobaltedev/kobalte/pull/381) +- Removed `asChild` and ``: [Polymorphism documentation](/docs/core/overview/polymorphism) +- Refactored `as` prop: [Polymorphism documentation](/docs/core/overview/polymorphism) +- [New component types](/docs/core/overview/polymorphism#types) + +**New features** + +- Allow importing individual components ([#391](https://github.com/kobaltedev/kobalte/pull/391)) +- [New `ToggleGroup` component](/docs/core/components/toggle-group) ([#378](https://github.com/kobaltedev/kobalte/pull/378)) diff --git a/apps/docs/src/VERSIONS.ts b/apps/docs/src/VERSIONS.ts index 47a655e9..d92625f1 100644 --- a/apps/docs/src/VERSIONS.ts +++ b/apps/docs/src/VERSIONS.ts @@ -1,4 +1,5 @@ export const CORE_VERSIONS = [ + "0.13.x", "0.12.x", "0.11.x", "0.10.x", @@ -18,4 +19,4 @@ export const LATEST_CORE_CHANGELOG_URL = `/docs/changelog/${CORE_VERSIONS[0].rep "-", )}`; -export const LATEST_CORE_VERSION_NAME = "v0.12.5"; +export const LATEST_CORE_VERSION_NAME = "v0.13.0"; diff --git a/apps/docs/src/routes/docs/changelog/0-13-x.mdx b/apps/docs/src/routes/docs/changelog/0-13-x.mdx new file mode 100644 index 00000000..414826c0 --- /dev/null +++ b/apps/docs/src/routes/docs/changelog/0-13-x.mdx @@ -0,0 +1,15 @@ +# v0.13.x + +## v0.13.0 (May 1, 2024) + +**Breaking changes** + +- [#381](https://github.com/kobaltedev/kobalte/pull/381) +- Removed `asChild` and ``: [Polymorphism documentation](/docs/core/overview/polymorphism) +- Refactored `as` prop: [Polymorphism documentation](/docs/core/overview/polymorphism) +- [New component types](/docs/core/overview/polymorphism#types) + +**New features** + +- Allow importing individual components ([#391](https://github.com/kobaltedev/kobalte/pull/391)) +- [New `ToggleGroup` component](/docs/core/components/toggle-group) ([#378](https://github.com/kobaltedev/kobalte/pull/378))