Skip to content

Commit 3d2c4fe

Browse files
committed
Prepare 2.1 release
1 parent 389c11a commit 3d2c4fe

File tree

4 files changed

+32
-10
lines changed

4 files changed

+32
-10
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ NetgenEnhancedBinaryFileBundle
77
[![Downloads](https://img.shields.io/packagist/dt/netgen/enhanced-binary-file-bundle.svg?style=flat-square)](https://packagist.org/packages/netgen/enhanced-binary-file-bundle/stats)
88
[![Latest stable](https://img.shields.io/packagist/v/netgen/enhanced-binary-file-bundle.svg?style=flat-square)](https://packagist.org/packages/netgen/enhanced-binary-file-bundle)
99
[![License](https://img.shields.io/github/license/netgen/NetgenEnhancedBinaryFileBundle.svg?style=flat-square)](LICENSE)
10-
[![PHP](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg?style=flat-square)](https://secure.php.net/)
1110

1211
NetgenEnhancedBinaryFileBundle is an eZ Publish 5/Platform bundle that provides a field type that reimplements `ezbinaryfile` field type.
1312

@@ -18,14 +17,16 @@ However, The eZ Publish 4 extension is still required to populate field type thr
1817
When you install this bundle with Composer, the eZ Publish 4 extension is installed automatically but not activated in settings.
1918

2019
License, docs and installation instructions
21-
-------------------------------------
20+
-------------------------------------------
2221

2322
[License](LICENSE)
2423

2524
[Copyright](doc/COPYRIGHT)
2625

2726
[Installation instructions](doc/INSTALL.md)
2827

28+
[Upgrade](doc/UPGRADE.md)
29+
2930
[Documentation](doc/DOC.md)
3031

3132
[Changelog](doc/CHANGELOG.md)

doc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/)
77
and this project adheres to [Semantic Versioning](http://semver.org/).
88

9+
10+
## [2.1.0] - 29-01-2019
11+
### Added
12+
- DownloadController by @darinda
13+
- Validation messages by @darinda
14+
- Updated php_cs configuration
15+
916
## [2.0.4] - 04-12-2018
1017
### Fixed
1118
- typo in ez_field_templates.yml

doc/INSTALL.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ public function registerBundles()
3030

3131
return $bundles;
3232
}
33+
```
34+
35+
### Include the routing config in your routing.yml
36+
37+
```yml
38+
_netgen_enhancedezbinaryfile:
39+
resource: '@NetgenEnhancedBinaryFileBundle/Resources/config/routing.yml'
3340
```
3441
3542
### Clear the caches
@@ -41,11 +48,3 @@ $ php app/console cache:clear
4148
```
4249

4350
For more detailed configuration, please check [documentation](DOC.md).
44-
45-
### Include the routing config in your routing.yml
46-
47-
```yml
48-
_netgen_enhancedezbinaryfile:
49-
resource: '@NetgenEnhancedBinaryFileBundle/Resources/config/routing.yml'
50-
```
51-

doc/UPGRADE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Upgrade instructions
2+
====================
3+
4+
Upgrade to 2.1.0
5+
----------------
6+
7+
Release 2.1.0 provides implementation of `DownloadController`, in order to use it,
8+
routing file must be included in main routing configuration file:
9+
10+
### Include the routing config in your routing.yml
11+
12+
```yml
13+
_netgen_enhancedezbinaryfile:
14+
resource: '@NetgenEnhancedBinaryFileBundle/Resources/config/routing.yml'
15+
```

0 commit comments

Comments
 (0)