Skip to content

Commit

Permalink
Merge branch 'release/3.1.0-beta.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed Sep 14, 2019
2 parents 526f613 + 0be9e70 commit 7df74a5
Show file tree
Hide file tree
Showing 34 changed files with 904 additions and 107 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
key: v2-dependencies-{{ checksum "composer.json" }}

# run tests!
- run: cd tests; ../vendor/bin/phpunit --exclude-group docker .
- run: ./vendor/bin/phpunit --exclude-group docker
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 3.1.0-beta.1 / 2019-09-14

### New

* Get drush command to dump sql from configuration
* Allow environment for host-configs, fixes #56
* Support replacements for host-environment variables

### Fixed

* Refactor tests, so they can be run from root foldergit
* Push and restore working dir
* Fix build script regarding not enough file handles

## 3.0.22 / 2019-09-12

### New
Expand Down
1 change: 1 addition & 0 deletions build/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ASSETS_PATH=./
VERSION=`git describe --tags | sed 's/-[0-9]-g[a-z0-9]\{7\}//'`
echo "Releasing ${VERSION} ..."
cd ..
ulimit -Sn 4096
composer install
composer build-phar
cd build
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@
"symfony/phpunit-bridge": "^2.8|^3|^4.1",
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.11.9",
"phpstan/phpstan-symfony": "^0.11.6"
"phpstan/phpstan-symfony": "^0.11.6",
"phpro/grumphp": "^0.15.2",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload": {
"psr-4": {"Phabalicious\\": "src/"}
"psr-4": {
"Phabalicious\\": "src/",
"Phabalicious\\Tests\\": "tests/"
}
},
"authors": [
{
Expand Down
Loading

0 comments on commit 7df74a5

Please sign in to comment.