From 8c95d1be62d3c3acb9f33886e609aa032ccfc72a Mon Sep 17 00:00:00 2001 From: Harings Rob Date: Wed, 11 Jan 2023 11:00:23 +0100 Subject: [PATCH] Prepare rc2 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- src/TwillServiceProvider.php | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b3d32a3f..c6585da07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to `twill` will be documented in this file. +## 3.0.0-rc2 + +This is the second release candidate for Twill 3! + +### Features + +- From builder now supports inline fieldsets [`#2007`](https://github.com/area17/twill/pull/2007) +- Blocks can now be defined as a blade component `php twill:make:componentBlock blockName` [`#2007`](https://github.com/area17/twill/pull/2007) + +### Bugfixes + +- Fixed an issue where media tags would not save [`#2051`](https://github.com/area17/twill/pull/2051) +- Fixed an issue where conditional fields would not unset [`#2043`](https://github.com/area17/twill/pull/2043) +- Vselect now properly handles floats [`#2048`](https://github.com/area17/twill/pull/2048) +- Repeaters now properly collapse/expand [`#2037`](https://github.com/area17/twill/pull/2037) + +### Docs + +- Various docs updated [`#2052`](https://github.com/area17/twill/pull/2052) + ## 3.0.0-rc1 The first release candidate for Twill 3! diff --git a/package.json b/package.json index 8487081f9..e835b40fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@area17/twill", - "version": "3.0.0-rc1", + "version": "3.0.0-rc2", "private": true, "scripts": { "inspect": "vue-cli-service inspect --mode production", diff --git a/src/TwillServiceProvider.php b/src/TwillServiceProvider.php index c61c4c5b1..f54c999ce 100644 --- a/src/TwillServiceProvider.php +++ b/src/TwillServiceProvider.php @@ -57,7 +57,7 @@ class TwillServiceProvider extends ServiceProvider * * @var string */ - public const VERSION = '3.0.0-rc1'; + public const VERSION = '3.0.0-rc2'; /** * Service providers to be registered.