Skip to content

Commit

Permalink
Release 0.8.5 (#118)
Browse files Browse the repository at this point in the history
* Release 0.8.6

* Current date for 0.8.6
  • Loading branch information
thiemowmde authored Sep 6, 2017
1 parent fd3ead7 commit 92f768e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,20 @@ DataValues Time has been written by the Wikidata team, as [Wikimedia Germany]

## Release notes

### 0.8.5 (dev)
### 0.8.6 (2017-09-06)

* Added whitespace trimming to `YearTimeParser`.
* Fixed `IsoTimestampParser` and `TimeValue` accepting a time of day with no day.
* Fixed `MonthNameUnlocalizer` accidentally replacing already unlocalized numeric months.
* Fixed `PhpDateTimeParser` misinterpreting inputs with only one or two numbers.
* Deprecated `TimeValue::newFromArray`.
* Raised required PHP version from 5.3 to 5.5.

### 0.8.5 (2017-08-09)

* Removed MediaWiki integration
* Bump data-values/common dependency

### 0.8.4 (2016-04-20)

* Added `MonthNameProvider` interface.
Expand Down
2 changes: 1 addition & 1 deletion Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
return 1;
}

define( 'DATAVALUES_TIME_VERSION', '0.8.4' );
define( 'DATAVALUES_TIME_VERSION', '0.8.6' );
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"php": ">=5.5.9",
"data-values/data-values": "~1.0|~0.1",
"data-values/interfaces": "~0.2.0|~0.1.5",
"data-values/common": "~0.3.0|~0.2.0"
"data-values/common": "~0.4.0|~0.3.0|~0.2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
Expand Down
2 changes: 1 addition & 1 deletion src/DataValues/TimeValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public function getArrayValue() {
* Constructs a new instance from the provided data. Required for @see DataValueDeserializer.
* This is expected to round-trip with @see getArrayValue.
*
* @deprecated since 0.8.5. Static DataValue::newFromArray constructors like this are
* @deprecated since 0.8.6. Static DataValue::newFromArray constructors like this are
* underspecified (not in the DataValue interface), and misleadingly named (should be named
* newFromArrayValue). Instead, use DataValue builder callbacks in @see DataValueDeserializer.
*
Expand Down

0 comments on commit 92f768e

Please sign in to comment.