Skip to content

Commit

Permalink
Changelog v1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenekdrahos committed Aug 31, 2019
1 parent f7b77ef commit 468b66b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# Changelog

## unreleased
## v1.23.0

* [#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`
* [#182](https://github.com/EdgedesignCZ/phpqa/issues/182) Fix loading composer's versions if project has custom bin-dir
* _CI_
* [#183](https://github.com/EdgedesignCZ/phpqa/pull/183) - Fix Windows build on Appveyor

## v1.22.1
## v1.23.0

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ Beware that the image is as lean as possible. That can be a problem for running
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)_).

```bash
docker run --rm -it zdenekdrahos/phpqa:v1.22.1 phpqa tools
docker run --rm -it zdenekdrahos/phpqa:v1.23.0 phpqa tools
# using a tool without phpqa
docker run --rm -it zdenekdrahos/phpqa:v1.22.1 phploc -v
docker run --rm -it zdenekdrahos/phpqa:v1.23.0 phploc -v
```

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/).
Expand Down Expand Up @@ -440,7 +440,7 @@ stages:
test:
stage: test
image: zdenekdrahos/phpqa:v1.22.1
image: zdenekdrahos/phpqa:v1.23.0
variables:
BACKEND_QA: "*/backend/var/QA"
BACKEND_CACHE: $CI_PROJECT_DIR/.composercache
Expand Down
2 changes: 1 addition & 1 deletion phpqa
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

define('PHPQA_VERSION', '1.22.1');
define('PHPQA_VERSION', '1.23.0');
define('PHPQA_USED_COMMAND', implode(' ', $argv));

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

0 comments on commit 468b66b

Please sign in to comment.