Skip to content

Commit

Permalink
Merge pull request #83 from wmde/release080
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
JonasKress committed Jan 11, 2016
2 parents f773ada + 5d5d5a4 commit 87a91ac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DataValuesJavaScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
return 1;
}

define( 'DATA_VALUES_JAVASCRIPT_VERSION', '0.7.0' );
define( 'DATA_VALUES_JAVASCRIPT_VERSION', '0.8.0' );

// Include the composer autoloader if it is present.
if ( is_readable( __DIR__ . '/vendor/autoload.php' ) ) {
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ On [Packagist](https://packagist.org/packages/data-values/javascript):

## Release notes

### 0.8.0 (2016-01-07)

#### Breaking changes
* `valueParsers.StringParser.parse` now resolves empty strings to `null`.
* Renamed string `id`s for the 0 to 6 `dataValues.TimeValue.PRECISIONS` to be identical to the PHP
constants in DataValues Time.

### 0.7.0 (2015-06-03)

#### Breaking changes
Expand Down Expand Up @@ -90,15 +97,15 @@ On [Packagist](https://packagist.org/packages/data-values/javascript):

* Fixed valueParsers ResourceLoader module definition template.

### 0.3 (2014-01-30)
### 0.3.0 (2014-01-30)

#### Breaking changes

* Renamed "valueFormatters.factory" Resource Loader module to "valueFormatters.ValueFormatterFactory"
* Renamed "valueParsers.factory" Resource Loader module to "valueParsers.ValueParserFactory"
* Removed ValueView dependency from "mw.ext.valueFormatters" module and "mw.ext.valueParsers" module.

### 0.2 (2014-01-24)
### 0.2.0 (2014-01-24)

#### Breaking changes

Expand All @@ -113,6 +120,6 @@ On [Packagist](https://packagist.org/packages/data-values/javascript):
* #16 Have the tests run on TravisCI using PhantomJS
* #18 Provided QUnit test runner using requireJS

### 0.1 (2013-12-23)
### 0.1.0 (2013-12-23)

Initial release.
2 changes: 1 addition & 1 deletion src/values/TimeValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ SELF.getCalendarModelKeyByUri = function( uri ) {
* Precision configuration.
* @property {Object}
* @static
* @since 0.7
* @since 0.8
*/
SELF.PRECISIONS = [
{ id: 'YEAR1G', text: 'billion years' },
Expand Down

0 comments on commit 87a91ac

Please sign in to comment.