diff --git a/CHANGELOG.md b/CHANGELOG.md index b7e1d2324..6b3d32a3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ All notable changes to `twill` will be documented in this file. +## 3.0.0-rc1 + +The first release candidate for Twill 3! + +### Features + +- Form builder now supports fieldsets, side forms, columns and more [`#1963`](https://github.com/area17/twill/pull/1963) +- Blocks can now be cloned from within the editor [`#1912`](https://github.com/area17/twill/pull/1912) +- Developer experience: Added a feature that can auto-login on development environments [`#1904`](https://github.com/area17/twill/pull/1904) + +### Improvements + +- A new slug implementation to have more consisten slug creation [`#1897`](https://github.com/area17/twill/pull/1897) +- Various styling fixes +- Improved defaults such as svg support +- Improved documentation styling and generator + +### Bugfixes + +- Many issues have been resolved in since beta2. + ## 3.0.0-beta2 This is a stabilization release to prepare a first stable release. diff --git a/package.json b/package.json index 5adb03805..8487081f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@area17/twill", - "version": "3.0.0-beta2", + "version": "3.0.0-rc1", "private": true, "scripts": { "inspect": "vue-cli-service inspect --mode production", diff --git a/src/TwillServiceProvider.php b/src/TwillServiceProvider.php index 1087019db..c0a0bc0a1 100644 --- a/src/TwillServiceProvider.php +++ b/src/TwillServiceProvider.php @@ -56,7 +56,7 @@ class TwillServiceProvider extends ServiceProvider * * @var string */ - public const VERSION = '3.0.0-beta2'; + public const VERSION = '3.0.0-rc1'; /** * Service providers to be registered.