Skip to content

Commit 5639efd

Browse files
author
Elitezen
committed
2.1.5 version bump
1 parent f678645 commit 5639efd

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
# 2.1.5
4+
- Fixed the issue of the dist/ folder not being included.
5+
36
# 2.1.4
47
- Reverted to `node-fetch` for Node versions < 18
58

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
Planning a trivia command for your Discord bot?
1717
`discord-trivia` v2 is coming!: https://github.com/Elitezen/discord-trivia
1818

19-
# 2.1.4
20-
- Reverted to `node-fetch` for Node versions < 18
19+
# 2.1.5
20+
- Fixed the issue of the dist/ folder not being included.
2121

2222
## Example Code
2323
```js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-trivia-db",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "A small and simple wrapper for the Open Trivia Database API.",
55
"keywords": [
66
"opentriviadatabase",

src/Classes/OpenTDBError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export default class OpenTDBError extends TypeError {
99
super(error.text);
1010
this.name = `OpenTDBError [${error.header}]`;
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)