Skip to content

Commit 812be2b

Browse files
committed
build 0.17.172
1 parent 51af57c commit 812be2b

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ Changelog
1212
* 0.10.x: PhpStorm 7 (no support)
1313
* 0.9.x: PhpStorm 6 (no support)
1414

15+
## 0.17.172
16+
* Fix service generation when a class name contains "Bundle" (Vincent Dechenaux) [#1293](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1293)
17+
* Services with tag twig.extension should implement Twig_ExtensionInterface (Vincent Dechenaux) [#1292](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1292)
18+
* Add doctrine-meta folder as PHP library into plugin (Thomas Schulz) [#1290](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1290)
19+
* Add doctrine-phpstorm-meta as submodule (Thomas Schulz) [#1290](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1290)
20+
* Updated symfony-phpstorm-meta files (Thomas Schulz) [#1289](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1289)
21+
1522
## 0.17.171
1623
* Add symfony-meta folder as PHP library into plugin (Thomas Schulz) [#1286](https://github.com/Haehnchen/idea-php-symfony2-plugin/pull/1286)
1724
* Routes: Adding support for inlined wildcard requirements [#1273](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1273) (Daniel Espendiller)

prepare-release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
3+
git submodule update --init --recursive
4+
25
echo "<html><ul>" > change-notes.html
36
git log `git describe --tags --abbrev=0`..HEAD --no-merges --oneline --pretty=format:"<li>%h %s (%an)</li>" >> change-notes.html
47
echo "</ul></html>" >> change-notes.html
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<html>
22
<ul>
3-
<li>Add symfony-meta folder as PHP library into plugin (Thomas Schulz) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/pull/1286">#1286</a></li>
4-
<li>Routes: Adding support for inlined wildcard requirements <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1273">#1273</a> (Daniel Espendiller)</li>
5-
<li>Symfony 4.3: Support "Always Include Route Default Values" parameter syntax <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1271">#1271</a> (Daniel Espendiller)</li>
3+
<li>Fix service generation when a class name contains "Bundle" (Vincent Dechenaux) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1293">#1293</a></li>
4+
<li>Services with tag twig.extension should implement Twig_ExtensionInterface (Vincent Dechenaux) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1292">#1292</a></li>
5+
<li>Add doctrine-meta folder as PHP library into plugin (Thomas Schulz) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1290">#1290</a></li>
6+
<li>Add doctrine-phpstorm-meta as submodule (Thomas Schulz) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1290">#1290</a></li>
7+
<li>Updated symfony-phpstorm-meta files (Thomas Schulz) <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1289">#1289</a></li>
68
</ul>
79
</html>

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin url="https://github.com/Haehnchen/idea-php-symfony2-plugin">
22
<id>fr.adrienbrault.idea.symfony2plugin</id>
33
<name>Symfony Plugin</name>
4-
<version>0.17.171</version>
4+
<version>0.17.172</version>
55
<vendor email="[email protected]" url="http://espend.de">Daniel Espendiller</vendor>
66

77
<description><![CDATA[

0 commit comments

Comments
 (0)