From d37d88a7eedf2cbcb0e39729ec12871d5c006f11 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Thu, 10 Sep 2020 15:47:46 +0200 Subject: [PATCH] v2.6.6 --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/fake-luxon.ts | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) 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() } -}; +}