Skip to content

Commit ae97000

Browse files
committed
Merge pull request #100 from wmde/release082
Release 0.8.2
2 parents 40897f4 + 35e2b2b commit ae97000

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
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.8.1' );
10+
define( 'DATA_VALUES_JAVASCRIPT_VERSION', '0.8.2' );
1111

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

README.md

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

1212
## Release notes
1313

14+
### 0.8.2 (2016-04-12)
15+
* Added 1/10000 of an arcsecond as a known precision to `globeCoordinate.Formatter`.
16+
* Fixed `globeCoordinate.Formatter.PRECISIONTEXT` not properly supporting precisions lower than
17+
1/1000 of an arcsecond.
18+
1419
### 0.8.1 (2016-04-08)
1520
* Added support for undefined `precision` to `globeCoordinate.GlobeCoordinate`.
1621
* Added `globe` support to `globeCoordinate.GlobeCoordinate`.
@@ -26,14 +31,19 @@ constants in DataValues Time.
2631

2732
#### Breaking changes
2833
* Renamed `dataValues.UnUnserializableValue` to `dataValues.UnDeserializableValue`.
29-
* Changed constructor parameter order of `dataValues.UnDeserializableValue` (formerly `dataValues.UnUnserializableValue`).
30-
* Removed `time.js` legacy code, including `time.Time` and `time.Parser`. Every "vital" functionality has been ported to `dataValues.TimeValue` which now may be interacted with directly instead of having to retrieve the encapsulated `time.Time` object first.
34+
* Changed constructor parameter order of `dataValues.UnDeserializableValue` (formerly
35+
`dataValues.UnUnserializableValue`).
36+
* Removed `time.js` legacy code, including `time.Time` and `time.Parser`. Every "vital"
37+
functionality has been ported to `dataValues.TimeValue` which now may be interacted with directly
38+
instead of having to retrieve the encapsulated `time.Time` object first.
3139
* Removed obsolete `valueParsers.TimeParser`. Back-end parser is to be used via API.
32-
* Removed obsolete `mw.ext.dataValues` module as it was just overwriting the obsolete `time.js` settings. Dependencies should be updated to point directly to the `dataValues.values` module.
40+
* Removed obsolete `mw.ext.dataValues` module as it was just overwriting the obsolete `time.js`
41+
settings. Dependencies should be updated to point directly to the `dataValues.values` module.
3342

3443
#### Enhancements
3544
* Implemented `toJSON` and `newFromJSON` in `dataValues.UnDeserializableValue`.
36-
* Consolidated code structure, updated and added code documentation to allow generating a proper documentation using JSDuck.
45+
* Consolidated code structure, updated and added code documentation to allow generating a proper
46+
documentation using JSDuck.
3747

3848
### 0.6.3 (2015-04-01)
3949
* Remove explicit resource loader dependency on jquery.qunit.
@@ -66,7 +76,8 @@ constants in DataValues Time.
6676

6777
#### Bugfixes
6878

69-
* Don't limit precisions of globe coordinates in the UI (allows display of values with a non predefined precision)
79+
* Don't limit precisions of globe coordinates in the UI (allows display of values with a non
80+
predefined precision)
7081

7182
### 0.5.0 (2014-03-28)
7283

@@ -78,7 +89,8 @@ constants in DataValues Time.
7889

7990
#### Enhancements
8091

81-
* Defined parameters of the promises returned by ValueFormatter's and ValueParser's format/parse functions.
92+
* Defined parameters of the promises returned by ValueFormatter's and ValueParser's format/parse
93+
functions.
8294

8395
### 0.4.0 (2014-03-24)
8496

@@ -105,9 +117,11 @@ constants in DataValues Time.
105117

106118
#### Breaking changes
107119

108-
* Renamed "valueFormatters.factory" Resource Loader module to "valueFormatters.ValueFormatterFactory"
109-
* Renamed "valueParsers.factory" Resource Loader module to "valueParsers.ValueParserFactory"
110-
* Removed ValueView dependency from "mw.ext.valueFormatters" module and "mw.ext.valueParsers" module.
120+
* Renamed "valueFormatters.factory" Resource Loader module to
121+
"valueFormatters.ValueFormatterFactory".
122+
* Renamed "valueParsers.factory" Resource Loader module to "valueParsers.ValueParserFactory".
123+
* Removed ValueView dependency from "mw.ext.valueFormatters" module and "mw.ext.valueParsers"
124+
module.
111125

112126
### 0.2.0 (2014-01-24)
113127

0 commit comments

Comments
 (0)