Skip to content

Commit

Permalink
release: releasing 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Mar 16, 2023
1 parent 87cd250 commit 66a108a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## v4.2.0 [2023-03-17]

## Features

- [feat] dataset values should accept string type
- [feat] extract DomainSubLabel into a plugin
- [feat] allow multiple instances of same plugin to co-exist
- [feat] refactor all CSS classnames, for a more consistent naming
- [feat] add defaultValue option to set a default value for missing values in dataset

## Bugfixes

- [fix] fix remaining wrong templates name, which should be migrated to snakeCase
- [fix] fix CalendarLabel missing coordinates on repaint
- [fix] fix missing dark theme style for Legend plugin

### BREAKING CHANGES

- All CSS classname have been refactor, plase update your CSS if required
- `domain.subLabel` option has been extracted to `CalendarLabel` plugin

## v4.1.0 [2023-02-28]

## Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cal-heatmap",
"version": "4.1.0",
"version": "4.2.0",
"description": "Cal-Heatmap is a javascript module to create calendar heatmap to visualize time series data",
"keywords": [
"calendar",
Expand All @@ -27,6 +27,10 @@
"./plugins/LegendLite": {
"import": "./dist/plugins/LegendLite.esm.js",
"require": "./dist/plugins/LegendLite.js"
},
"./plugins/CalendarLabel": {
"import": "./dist/plugins/CalendarLabel.esm.js",
"require": "./dist/plugins/CalendarLabel.js"
}
},
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const VERSION = '4.0.0';
const VERSION = '4.2.0';
export default VERSION;

0 comments on commit 66a108a

Please sign in to comment.