Skip to content

Commit

Permalink
Changelog - v1.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenekdrahos committed Sep 13, 2019
1 parent 4922322 commit 72f6b76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

# Changelog

## v1.23.1

* [#184](https://github.com/EdgedesignCZ/phpqa/issues/184) Fix supporting `php-cs-fixer.config` path with spaces

## 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`
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.23.0 phpqa tools
docker run --rm -it zdenekdrahos/phpqa:v1.23.1 phpqa tools
# using a tool without phpqa
docker run --rm -it zdenekdrahos/phpqa:v1.23.0 phploc -v
docker run --rm -it zdenekdrahos/phpqa:v1.23.1 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.23.0
image: zdenekdrahos/phpqa:v1.23.1
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.23.0');
define('PHPQA_VERSION', '1.23.1');
define('PHPQA_USED_COMMAND', implode(' ', $argv));

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

0 comments on commit 72f6b76

Please sign in to comment.