Skip to content

Commit

Permalink
release: releasing v4.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Jan 21, 2023
1 parent 4b8af7d commit a6ba195
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v4.0.0-beta.4 []
## v4.0.0-beta.4 [2023-01-21]

### BREAKING CHANGES

Expand All @@ -10,12 +10,23 @@ Momentjs have been replaced by the more lighter day.js, slimming down
the bundle by 75%. Timezone support is now a built-in function, instead
of a plugin.

### Refactor/Performance

- Some refactoring, so that `d3-array` is not a required depency anymore
- Avoid redundant calls to dayjs initializer
- Do not process data irrelevant to the calendar current time window

### Features

- Locales will be loaded asynchronously by the calendar itself
- Add new `extendDayjs()` method to extend dayjs with a plugin, as it's built-in with the minimum number of plugins

This migration required further tests, to ensure listed browser support is met.

### Pending issues

- Dayjs is having some performance issues when using the timezone plugin (https://github.com/iamkun/dayjs/pull/2019).

## v4.0.0-beta.3 [2023-01-14]

### Bug Fixes
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cal-heatmap",
"version": "4.0.0-beta.3",
"version": "4.0.0-beta.4",
"description": "Cal-Heatmap is a javascript module to create calendar heatmap to visualize time series data",
"keywords": [
"calendar",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const VERSION = '4.0.0-beta.3'; export default VERSION;
const VERSION = '4.0.0-beta.4'; export default VERSION;

0 comments on commit a6ba195

Please sign in to comment.