Browse Source

Finish 3.5.0-RC1.1

pull/6487/head 3.5.0-RC1.1
Brandon Kelly 5 years ago
parent
commit
a465272af5
  1. 4
      CHANGELOG-v3.md
  2. 2
      composer.json
  3. 2
      src/config/app.php

4
CHANGELOG-v3.md

@ -1,12 +1,12 @@
# Release Notes for Craft CMS 3.x
## Unreleased
## 3.5.0-RC1.1 - 2020-07-21
### Added
- Added `craft\models\MatrixBlockType::getConfig()`.
### Fixed
- Fixed an error that occurred when running the `project-config/rebuild` command, if there were any Matrix block types that didn’t have any fields.
- Fixed an error that occurred when running the `project-config/rebuild` command, if there were any Matrix block types that didn’t have any fields. ([#6420](https://github.com/craftcms/cms/issues/6420))
- Fixed a bug where nested project config files weren’t getting saved properly on Windows servers. ([#6419](https://github.com/craftcms/cms/issues/6419))
- Fixed an error that occurred when running project config actions from the Project Config utility, if admin changes were disallowed.

2
composer.json

@ -1,7 +1,7 @@
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.5.0-RC1",
"version": "3.5.0-RC1.1",
"keywords": [
"cms",
"craftcms",

2
src/config/app.php

@ -3,7 +3,7 @@
return [
'id' => 'CraftCMS',
'name' => 'Craft CMS',
'version' => '3.5.0-RC1',
'version' => '3.5.0-RC1.1',
'schemaVersion' => '3.5.12',
'minVersionRequired' => '2.6.2788',
'basePath' => dirname(__DIR__), // Defines the @app alias

Loading…
Cancel
Save