Skip to content

Commit

Permalink
Changelog - v1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenekdrahos committed Nov 2, 2019
1 parent cc5855b commit f4756c4
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.2

* [#187](https://github.com/EdgedesignCZ/phpqa/issues/187) phpmetrics - fix analyzing multiple extensions in v1

## v1.23.1

* [#184](https://github.com/EdgedesignCZ/phpqa/issues/184) Fix supporting `php-cs-fixer.config` path with spaces
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.1 phpqa tools
docker run --rm -it zdenekdrahos/phpqa:v1.23.2 phpqa tools
# using a tool without phpqa
docker run --rm -it zdenekdrahos/phpqa:v1.23.1 phploc -v
docker run --rm -it zdenekdrahos/phpqa:v1.23.2 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.1
image: zdenekdrahos/phpqa:v1.23.2
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.1');
define('PHPQA_VERSION', '1.23.2');
define('PHPQA_USED_COMMAND', implode(' ', $argv));

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

0 comments on commit f4756c4

Please sign in to comment.