Skip to content

Commit

Permalink
Merge pull request #36 from DataValues/release031
Browse files Browse the repository at this point in the history
Release 0.3.1
  • Loading branch information
addshore committed Aug 14, 2015
2 parents 7d59053 + b3d7108 commit 5d9d4bf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
return 1;
}

define( 'DATAVALUES_COMMON_VERSION', '0.3.0' );
define( 'DATAVALUES_COMMON_VERSION', '0.3.1' );

if ( defined( 'MEDIAWIKI' ) ) {
$GLOBALS['wgExtensionCredits']['datavalues'][] = array(
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ DataValues Common has been written by the Wikidata team, as [Wikimedia Germany]

## Release notes

### 0.3.1 (2015-08-14)

* The component can now be installed together with DataValues Interfaces 0.1.5

### 0.3.0 (2015-08-11)

* Added `DispatchingValueParser`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"require": {
"php": ">=5.3.0",
"data-values/data-values": "~1.0|~0.1",
"data-values/interfaces": "~0.2.0"
"data-values/interfaces": "~0.2.0|^0.1.5"
},
"extra": {
"branch-alias": {
Expand Down
7 changes: 7 additions & 0 deletions tests/ValueFormatters/StringFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
*/
class StringFormatterTest extends ValueFormatterTestBase {

/**
* @deprecated since 0.2, just use getInstance.
*/
protected function getFormatterClass() {
throw new \LogicException( 'Should not be called, use getInstance' );
}

/**
* @see ValueFormatterTestBase::getInstance
*
Expand Down

0 comments on commit 5d9d4bf

Please sign in to comment.