Skip to content

Commit 87a91ac

Browse files
committed
Merge pull request #83 from wmde/release080
Release 0.8.0
2 parents f773ada + 5d5d5a4 commit 87a91ac

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

DataValuesJavaScript.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
return 1;
88
}
99

10-
define( 'DATA_VALUES_JAVASCRIPT_VERSION', '0.7.0' );
10+
define( 'DATA_VALUES_JAVASCRIPT_VERSION', '0.8.0' );
1111

1212
// Include the composer autoloader if it is present.
1313
if ( is_readable( __DIR__ . '/vendor/autoload.php' ) ) {

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ On [Packagist](https://packagist.org/packages/data-values/javascript):
1111

1212
## Release notes
1313

14+
### 0.8.0 (2016-01-07)
15+
16+
#### Breaking changes
17+
* `valueParsers.StringParser.parse` now resolves empty strings to `null`.
18+
* Renamed string `id`s for the 0 to 6 `dataValues.TimeValue.PRECISIONS` to be identical to the PHP
19+
constants in DataValues Time.
20+
1421
### 0.7.0 (2015-06-03)
1522

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

9198
* Fixed valueParsers ResourceLoader module definition template.
9299

93-
### 0.3 (2014-01-30)
100+
### 0.3.0 (2014-01-30)
94101

95102
#### Breaking changes
96103

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

101-
### 0.2 (2014-01-24)
108+
### 0.2.0 (2014-01-24)
102109

103110
#### Breaking changes
104111

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

116-
### 0.1 (2013-12-23)
123+
### 0.1.0 (2013-12-23)
117124

118125
Initial release.

src/values/TimeValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ SELF.getCalendarModelKeyByUri = function( uri ) {
314314
* Precision configuration.
315315
* @property {Object}
316316
* @static
317-
* @since 0.7
317+
* @since 0.8
318318
*/
319319
SELF.PRECISIONS = [
320320
{ id: 'YEAR1G', text: 'billion years' },

0 commit comments

Comments
 (0)