Skip to content

Commit 3c60f59

Browse files
committed
Preparing 1.0.2
1 parent 097ac4c commit 3c60f59

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CHANGES.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
## Changes in version 1.0.2 (in development)
1+
## Changes in version 1.0.2
22

3-
* Chart labels are now visible again using light theme. (#268)
3+
* Timeseries chart labels are now visible again using light theme. (#268)
44

55
* Users can now remove individual timeseries from a chart. (#277)
66

77

8-
98
## Changes in version 1.0.1
109

1110
### Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xcube-viewer",
3-
"version": "1.0.2-dev.1",
3+
"version": "1.0.2",
44
"private": true,
55
"homepage": ".",
66
"scripts": {

src/util/csv.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class Parser {
137137
if (token === options.nanToken) {
138138
return Number.NaN;
139139
}
140-
const value = parseFloat(token);
140+
const value = Number(token);
141141
if (!Number.isNaN(value)) {
142142
return value;
143143
}

0 commit comments

Comments
 (0)