Skip to content

Commit d37d88a

Browse files
committed
v2.6.6
1 parent 918ea7e commit d37d88a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
### Changelog
22

3+
- 2.6.6 (2020-08-23)
4+
- Bugfixes:
5+
- Fixed broken npm package (#417)
6+
37
- 2.6.5 (2020-08-23)
48
- Bugfixes:
59
- `luxon`-less binary should not contain any `luxon` imports (#410)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rrule",
3-
"version": "2.6.5",
3+
"version": "2.6.6",
44
"description": "JavaScript library for working with recurrence rules for calendar dates.",
55
"homepage": "http://jakubroztocil.github.io/rrule/",
66
"license": "BSD-3-Clause",

src/fake-luxon.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const DateTime = {
2-
fromJSDate() {
3-
throw new TypeError();
2+
fromJSDate () {
3+
throw new TypeError()
44
}
5-
};
5+
}

0 commit comments

Comments
 (0)