Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 19776c6

Browse files
committed
Merging develop to master in preparation for 1.2.0 release.
2 parents 90a58a1 + 2b2059e commit 19776c6

10 files changed

+273
-266
lines changed

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
sudo: false
2-
31
language: php
42

53
cache:
@@ -19,6 +17,7 @@ matrix:
1917
- php: 7.1
2018
env:
2119
- DEPS=locked
20+
- LEGACY_DEPS="zendframework/zend-hydrator"
2221
- CS_CHECK=true
2322
- TEST_COVERAGE=true
2423
- php: 7.1
@@ -33,12 +32,22 @@ matrix:
3332
- php: 7.2
3433
env:
3534
- DEPS=latest
35+
- php: 7.3
36+
env:
37+
- DEPS=lowest
38+
- php: 7.3
39+
env:
40+
- DEPS=locked
41+
- php: 7.3
42+
env:
43+
- DEPS=latest
3644

3745
before_install:
3846
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
3947

4048
install:
41-
- travis_retry composer install $COMPOSER_ARGS
49+
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
50+
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update --with-dependencies $COMPOSER_ARGS $LEGACY_DEPS ; fi
4251
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
4352
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
4453
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file, in reverse
44

55
Versions prior to 0.4.0 were released as the package "weierophinney/hal".
66

7+
## 1.2.0 - 2018-12-11
8+
9+
### Added
10+
11+
- [#51](https://github.com/zendframework/zend-expressive-hal/pull/51) adds support for zend-hydrator version 3 releases. You may continue to use
12+
version 2 releases as well.
13+
14+
### Changed
15+
16+
- Nothing.
17+
18+
### Deprecated
19+
20+
- Nothing.
21+
22+
### Removed
23+
24+
- Nothing.
25+
26+
### Fixed
27+
28+
- Nothing.
29+
730
## 1.1.1 - 2018-12-11
831

932
### Added

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"phpunit/phpunit": "^7.0.1",
3535
"zendframework/zend-coding-standard": "~1.0.0",
3636
"zendframework/zend-expressive-helpers": "^5.0.0alpha3",
37-
"zendframework/zend-hydrator": "^2.3.1",
37+
"zendframework/zend-hydrator": "^2.3.1 || ^3.0",
3838
"zendframework/zend-paginator": "^2.7"
3939
},
4040
"provide": {
@@ -61,8 +61,8 @@
6161
},
6262
"extra": {
6363
"branch-alias": {
64-
"dev-master": "1.1.x-dev",
65-
"dev-develop": "1.2.x-dev"
64+
"dev-master": "1.2.x-dev",
65+
"dev-develop": "1.3.x-dev"
6666
},
6767
"zf": {
6868
"config-provider": "Zend\\Expressive\\Hal\\ConfigProvider"

0 commit comments

Comments
 (0)