Skip to content

Commit

Permalink
v2.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Sep 10, 2020
1 parent 918ea7e commit d37d88a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/fake-luxon.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const DateTime = {
fromJSDate() {
throw new TypeError();
fromJSDate () {
throw new TypeError()
}
};
}

0 comments on commit d37d88a

Please sign in to comment.