Skip to content

Commit 8a5b3f3

Browse files
committed
Changelog v1.21.1
1 parent 6ef3519 commit 8a5b3f3

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

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

22
# Changelog
33

4+
## v1.21.1
5+
6+
* [6ef3519](https://github.com/EdgedesignCZ/phpqa/commit/6ef3519) Fix docker build
7+
48
## v1.21.0
59

610
* [#164](https://github.com/EdgedesignCZ/phpqa/pull/164) - add support for multiple phpmd rulesets

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ Beware that the image is as lean as possible. That can be a problem for running
130130
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)_).
131131

132132
```bash
133-
docker run --rm -it zdenekdrahos/phpqa:v1.21.0 phpqa tools
133+
docker run --rm -it zdenekdrahos/phpqa:v1.21.1 phpqa tools
134134
# using a tool without phpqa
135-
docker run --rm -it zdenekdrahos/phpqa:v1.21.0 phploc -v
135+
docker run --rm -it zdenekdrahos/phpqa:v1.21.1 phploc -v
136136
```
137137

138138
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/).
@@ -425,7 +425,7 @@ stages:
425425
426426
test:
427427
stage: test
428-
image: zdenekdrahos/phpqa:v1.21.0
428+
image: zdenekdrahos/phpqa:v1.21.1
429429
variables:
430430
BACKEND_QA: "*/backend/var/QA"
431431
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.21.0');
4+
define('PHPQA_VERSION', '1.21.1');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

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

0 commit comments

Comments
 (0)