Skip to content

Commit 66a108a

Browse files
committed
release: releasing 4.2.0
1 parent 87cd250 commit 66a108a

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## v4.2.0 [2023-03-17]
4+
5+
## Features
6+
7+
- [feat] dataset values should accept string type
8+
- [feat] extract DomainSubLabel into a plugin
9+
- [feat] allow multiple instances of same plugin to co-exist
10+
- [feat] refactor all CSS classnames, for a more consistent naming
11+
- [feat] add defaultValue option to set a default value for missing values in dataset
12+
13+
## Bugfixes
14+
15+
- [fix] fix remaining wrong templates name, which should be migrated to snakeCase
16+
- [fix] fix CalendarLabel missing coordinates on repaint
17+
- [fix] fix missing dark theme style for Legend plugin
18+
19+
### BREAKING CHANGES
20+
21+
- All CSS classname have been refactor, plase update your CSS if required
22+
- `domain.subLabel` option has been extracted to `CalendarLabel` plugin
23+
324
## v4.1.0 [2023-02-28]
425

526
## Features

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cal-heatmap",
3-
"version": "4.1.0",
3+
"version": "4.2.0",
44
"description": "Cal-Heatmap is a javascript module to create calendar heatmap to visualize time series data",
55
"keywords": [
66
"calendar",
@@ -27,6 +27,10 @@
2727
"./plugins/LegendLite": {
2828
"import": "./dist/plugins/LegendLite.esm.js",
2929
"require": "./dist/plugins/LegendLite.js"
30+
},
31+
"./plugins/CalendarLabel": {
32+
"import": "./dist/plugins/CalendarLabel.esm.js",
33+
"require": "./dist/plugins/CalendarLabel.js"
3034
}
3135
},
3236
"directories": {

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const VERSION = '4.0.0';
1+
const VERSION = '4.2.0';
22
export default VERSION;

0 commit comments

Comments
 (0)