Skip to content

Commit

Permalink
Add CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Jul 1, 2020
1 parent 723d253 commit 47ae565
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 11 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.3.0](https://github.com/hackzilla/TicketBundle/compare/3.2.0...3.3.0) - 2020-07-01

* minor Deprecate `TicketManager::getTicketList()` (backported from PR #127) (phansys)
* minor #155 Allow to install "knplabs/knp-paginator-bundle:^5.0" (phansys)
* bugfix #156 Explicitly require "twig/twig" since it is used by the Twig ticket extensions (phansys)
* minor #154 Update CI configuration (phansys)
* minor #153 Allow "doctrine/doctrine-bundle:^2.0" (phansys)
* bugfix #152 Update constraint for "phpunit/phpunit" (phansys)
* patch #148 Update some calls to deprecated test methods (phansys)
* patch #147 Add tests for templates load (phansys)
* patch #145 Use Twig namespaced paths (phansys)
* bugfix #146 Replace "twig/twig" requirement with "symfony/twig-bundle" (phansys)
* bugfix #137 Fix template attributes forbidden (, masonen)
* minor #144 Add explicit dependency against "twig/twig" (phansys)
* bugfix #142 Remove "syntaxCheck" config for PHPUnit (phansys)
* minor #139 Add support for "knplabs/knp-paginator-bundle:^4.0" (phansys)
* minor #140 Exclude test files from "autoload" section (phansys)
* minor #132 Allow "knplabs/knp-paginator-bundle:^3.0" (phansys)
* minor #131 Remove some deprecations (phansys)
* merge #130 Update dependency constraint for "symfony/framework-bundle" (phansys)
* bugfix #126 [dependencies] Provide "translation" service via "symfony/translation" instead of "sensio/framework-extra-bundle" (phansys)
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Available translations for:

## Version Matrix

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


## Demo
Expand Down Expand Up @@ -69,11 +69,11 @@ These optional features that can be turned on or off.

hackzilla_ticket:
templates:
index: 'YOURTicketBundle:Ticket:index.html.twig'
new: 'YOURTicketBundle:Ticket:new.html.twig'
prototype: 'YOURTicketBundle:Ticket:prototype.html.twig'
show: 'YOURTicketBundle:Ticket:show.html.twig'
show_attachment: 'YOURTicketBundle:Ticket:show_attachment.html.twig'
index: '@App/Ticket/index.html.twig'
new: '@App/Ticket/new.html.twig'
prototype: '@App/Ticket/prototype.html.twig'
show: '@App/Ticket/show.html.twig'
show_attachment: '@App/Ticket/show_attachment.html.twig'
```
## Migrate a Previous Version
Expand Down

0 comments on commit 47ae565

Please sign in to comment.