From 47ae5653f9d9bbc7143921941a8acbf3d33eed06 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Wed, 1 Jul 2020 09:55:42 -0300 Subject: [PATCH] Add `CHANGELOG.md` --- CHANGELOG.md | 25 +++++++++++++++++++++++++ README.md | 22 +++++++++++----------- 2 files changed, 36 insertions(+), 11 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..accb8be5 --- /dev/null +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index e49aec41..6e52afc5 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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