Skip to content

Commit 47ae565

Browse files
committed
Add CHANGELOG.md
1 parent 723d253 commit 47ae565

2 files changed

Lines changed: 36 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
This project adheres to [Semantic Versioning](http://semver.org/).
4+
5+
## [3.3.0](https://github.com/hackzilla/TicketBundle/compare/3.2.0...3.3.0) - 2020-07-01
6+
7+
* minor Deprecate `TicketManager::getTicketList()` (backported from PR #127) (phansys)
8+
* minor #155 Allow to install "knplabs/knp-paginator-bundle:^5.0" (phansys)
9+
* bugfix #156 Explicitly require "twig/twig" since it is used by the Twig ticket extensions (phansys)
10+
* minor #154 Update CI configuration (phansys)
11+
* minor #153 Allow "doctrine/doctrine-bundle:^2.0" (phansys)
12+
* bugfix #152 Update constraint for "phpunit/phpunit" (phansys)
13+
* patch #148 Update some calls to deprecated test methods (phansys)
14+
* patch #147 Add tests for templates load (phansys)
15+
* patch #145 Use Twig namespaced paths (phansys)
16+
* bugfix #146 Replace "twig/twig" requirement with "symfony/twig-bundle" (phansys)
17+
* bugfix #137 Fix template attributes forbidden (, masonen)
18+
* minor #144 Add explicit dependency against "twig/twig" (phansys)
19+
* bugfix #142 Remove "syntaxCheck" config for PHPUnit (phansys)
20+
* minor #139 Add support for "knplabs/knp-paginator-bundle:^4.0" (phansys)
21+
* minor #140 Exclude test files from "autoload" section (phansys)
22+
* minor #132 Allow "knplabs/knp-paginator-bundle:^3.0" (phansys)
23+
* minor #131 Remove some deprecations (phansys)
24+
* merge #130 Update dependency constraint for "symfony/framework-bundle" (phansys)
25+
* bugfix #126 [dependencies] Provide "translation" service via "symfony/translation" instead of "sensio/framework-extra-bundle" (phansys)

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ Available translations for:
2828

2929
## Version Matrix
3030

31-
| Ticket Bundle | Symfony | PHP |
32-
| ------------------| --------------- | ----- |
33-
| [3.x][6] (master) | ^2.8\|^3.0\|^4.0 | >=5.6 |
34-
| [2.x][7] | ^2.7\|^3.0 | >=5.3 |
35-
| [1.x][8] | ^2.3 | >=5.3 |
36-
| [0.x][9] | ^2.3 | >=5.3 |
31+
| Ticket Bundle | Symfony | PHP |
32+
| --------------| ---------------- | ----- |
33+
| [3.x][6] | ^2.8\|^3.0\|^4.0 | >=5.6 |
34+
| [2.x][7] | ^2.7\|^3.0 | >=5.3 |
35+
| [1.x][8] | ^2.3 | >=5.3 |
36+
| [0.x][9] | ^2.3 | >=5.3 |
3737

3838

3939
## Demo
@@ -69,11 +69,11 @@ These optional features that can be turned on or off.
6969

7070
hackzilla_ticket:
7171
templates:
72-
index: 'YOURTicketBundle:Ticket:index.html.twig'
73-
new: 'YOURTicketBundle:Ticket:new.html.twig'
74-
prototype: 'YOURTicketBundle:Ticket:prototype.html.twig'
75-
show: 'YOURTicketBundle:Ticket:show.html.twig'
76-
show_attachment: 'YOURTicketBundle:Ticket:show_attachment.html.twig'
72+
index: '@App/Ticket/index.html.twig'
73+
new: '@App/Ticket/new.html.twig'
74+
prototype: '@App/Ticket/prototype.html.twig'
75+
show: '@App/Ticket/show.html.twig'
76+
show_attachment: '@App/Ticket/show_attachment.html.twig'
7777
```
7878
7979
## Migrate a Previous Version

0 commit comments

Comments
 (0)