Skip to content

Commit 9e5ee7e

Browse files
committed
Changelog v1.17.0
1 parent add1e79 commit 9e5ee7e

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
# Changelog
33

4+
## v1.17.0
5+
6+
* [#98](https://github.com/EdgedesignCZ/phpqa/pull/98) - allow multiple configurations in `--config`
7+
* [#104](https://github.com/EdgedesignCZ/phpqa/pull/104) - add support for extensions in `parallel-lint`
8+
* _Internal changes_
9+
* [#99](https://github.com/EdgedesignCZ/phpqa/pull/99), [#101](https://github.com/EdgedesignCZ/phpqa/pull/101), [#106](https://github.com/EdgedesignCZ/phpqa/pull/106) Travis build (fix composer/psalm errors, add PHP 7.2)
10+
411
## v1.16.0
512

613
* **Optional tools**

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ Beware that the image is as lean as possible. That can be a problem for running
131131
In that case, you might miss PHP extensions for database etc (_you can [install phpqa](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/get-phpqa-binary#L40) in another [php image](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/.gitlab-ci.yml#L28)_).
132132

133133
```bash
134-
docker run --rm -it zdenekdrahos/phpqa:v1.14.0 phpqa tools
134+
docker run --rm -it zdenekdrahos/phpqa:v1.17.0 phpqa tools
135135
# using a tool without phpqa
136-
docker run --rm -it zdenekdrahos/phpqa:v1.14.0 phploc -v
136+
docker run --rm -it zdenekdrahos/phpqa:v1.17.0 phploc -v
137137
```
138138

139139
There are also available images [eko3alpha/docker-phpqa](https://hub.docker.com/r/eko3alpha/docker-phpqa/) and [sparkfabrik/docker-phpqa](https://hub.docker.com/r/sparkfabrik/docker-phpqa/).
@@ -412,7 +412,7 @@ stages:
412412
413413
test:
414414
stage: test
415-
image: zdenekdrahos/phpqa:v1.16.0
415+
image: zdenekdrahos/phpqa:v1.17.0
416416
variables:
417417
BACKEND_QA: "*/backend/var/QA"
418418
BACKEND_CACHE: $CI_PROJECT_DIR/.composercache

phpqa

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33

4-
define('PHPQA_VERSION', '1.16.0');
4+
define('PHPQA_VERSION', '1.17.0');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

77
if (file_exists(__DIR__ . '/vendor/autoload.php')) {

0 commit comments

Comments
 (0)