Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 587efb3

Browse files
committed
Prepare 2.1.0-RC1
1 parent 492cae1 commit 587efb3

File tree

5 files changed

+5
-27
lines changed

5 files changed

+5
-27
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.6
54
- 7.0
65
- hhvm
76

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
Changelog
22
=========
33

4+
2.1.0-RC1
5+
---------
6+
47
* **2016-11-27**: [BC BREAK] Removed all admin integration in favor of the CmfSonataAdminIntegrationBundle.
5-
* **2016-06-19**: [BC BREAK] Removed `setParent()`/`getParent()` from the model `MenuNode`.
68
* **2016-06-18**: [BC BREAK] Removed all `*.class` parameters.
79
* **2016-05-25**: Use "auto" for publish workflow enabled flag. If auto and
810
CmfCoreBundle is not instantiated, publish workflow integration is not enabled.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The MenuBundle provides menus from a doctrine object manager with the help of Kn
1212

1313
## Requirements
1414

15-
* Symfony 2.3+
15+
* Symfony 2.8+
1616
* See also the `require` section of [composer.json](composer.json)
1717

1818
## Documentation

UPGRADE-2.1.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -67,26 +67,3 @@
6767
- cmf_sonata_admin_integration.menu.menu_admin
6868
- cmf_sonata_admin_integration.menu.node_admin
6969
```
70-
71-
## Model
72-
73-
* Removed `setParent()`/`getParent()` from the model `MenuNode`. Use
74-
`setParentObject()`/`getParentObject()` instead.
75-
76-
**Before**
77-
```php
78-
use Symfony\Cmf\Bundle\MenuBundle\Model\MenuNode;
79-
// ...
80-
81-
$node = new MenuNode('some name');
82-
$node->setParent($menuRoot);
83-
```
84-
85-
**After**
86-
```php
87-
use Symfony\Cmf\Bundle\MenuBundle\Model\MenuNode;
88-
// ...
89-
90-
$node = new MenuNode('some name');
91-
$node->setParentObject($menuRoot);
92-
```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"require": {
1515
"php": "^5.6|^7.0",
1616
"symfony/framework-bundle": "^2.8|^3.0",
17-
"symfony-cmf/core-bundle": "^2.0@dev",
17+
"symfony-cmf/core-bundle": "^2.0",
1818
"doctrine/phpcr-bundle": "^1.1",
1919
"doctrine/phpcr-odm": "^1.4|^2.0",
2020
"knplabs/knp-menu-bundle": "^2.0.0",

0 commit comments

Comments
 (0)