diff --git a/CHANGELOG.md b/CHANGELOG.md index fc6a82e7..312ded52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Changelog +- 2.6.6 (2020-08-23) + - Bugfixes: + - Fixed broken npm package (#417) + - 2.6.5 (2020-08-23) - Bugfixes: - `luxon`-less binary should not contain any `luxon` imports (#410) diff --git a/package.json b/package.json index 72de0f4b..a1d5039e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rrule", - "version": "2.6.5", + "version": "2.6.6", "description": "JavaScript library for working with recurrence rules for calendar dates.", "homepage": "http://jakubroztocil.github.io/rrule/", "license": "BSD-3-Clause", diff --git a/src/fake-luxon.ts b/src/fake-luxon.ts index 42b1a6fd..6bdc8dde 100644 --- a/src/fake-luxon.ts +++ b/src/fake-luxon.ts @@ -1,5 +1,5 @@ export const DateTime = { - fromJSDate() { - throw new TypeError(); + fromJSDate () { + throw new TypeError() } -}; +}