Skip to content

Commit 468b66b

Browse files
committed
Changelog v1.23.0
1 parent f7b77ef commit 468b66b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

22
# Changelog
33

4-
## unreleased
4+
## v1.23.0
55

66
* [#180](https://github.com/EdgedesignCZ/phpqa/issues/180) **`php-cs-fixer.config` BC** - `php-cs-fixer.config` is relative to `.phpqa.yml`, previously it was relative to `cwd`
77
* [#182](https://github.com/EdgedesignCZ/phpqa/issues/182) Fix loading composer's versions if project has custom bin-dir
88
* _CI_
99
* [#183](https://github.com/EdgedesignCZ/phpqa/pull/183) - Fix Windows build on Appveyor
1010

11-
## v1.22.1
11+
## v1.23.0
1212

1313
* [#178](https://github.com/EdgedesignCZ/phpqa/pull/178) Fix docker build, prevent docker errors on release
1414

README.md

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

131131
```bash
132-
docker run --rm -it zdenekdrahos/phpqa:v1.22.1 phpqa tools
132+
docker run --rm -it zdenekdrahos/phpqa:v1.23.0 phpqa tools
133133
# using a tool without phpqa
134-
docker run --rm -it zdenekdrahos/phpqa:v1.22.1 phploc -v
134+
docker run --rm -it zdenekdrahos/phpqa:v1.23.0 phploc -v
135135
```
136136

137137
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/).
@@ -440,7 +440,7 @@ stages:
440440
441441
test:
442442
stage: test
443-
image: zdenekdrahos/phpqa:v1.22.1
443+
image: zdenekdrahos/phpqa:v1.23.0
444444
variables:
445445
BACKEND_QA: "*/backend/var/QA"
446446
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.22.1');
4+
define('PHPQA_VERSION', '1.23.0');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

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

0 commit comments

Comments
 (0)