Skip to content

Commit 9d4434e

Browse files
chore(release): publish new version
1 parent a49f2e4 commit 9d4434e

File tree

5 files changed

+19
-23
lines changed

5 files changed

+19
-23
lines changed

.changeset/grumpy-snakes-tie.md

-5
This file was deleted.

.changeset/six-avocados-film.md

-5
This file was deleted.

.changeset/three-laws-march.md

-6
This file was deleted.

packages/api/CHANGELOG.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @untidy/thetvdb
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- 6bc6234: feat: support new node version 22.x
8+
9+
### Patch Changes
10+
11+
- 76f6130: replace homepage url
12+
- d087895: fix: update links from readme to new site.
13+
fix: remove links in jsdocs.
14+
315
## 1.0.0
416

517
### Major Changes
@@ -14,19 +26,19 @@
1426
movie's extended record, they would write something like this:
1527

1628
```js
17-
import { TheTVDB } from '@untidy/thetvdb';
29+
import { TheTVDB } from "@untidy/thetvdb";
1830

19-
const client = new TheTVDB('access token');
20-
await client.getMovie({ id: '3646', extended: true });
31+
const client = new TheTVDB("access token");
32+
await client.getMovie({ id: "3646", extended: true });
2133
```
2234

2335
Now, with the new rewrite, there's no need to specify the `extended` argument or even the `id`.
2436

2537
```js
26-
import { TheTVDB } from '@untidy/thetvdb';
38+
import { TheTVDB } from "@untidy/thetvdb";
2739

28-
const client = new TheTVDB('access token');
29-
await client.movieByIdExtended('12586');
40+
const client = new TheTVDB("access token");
41+
await client.movieByIdExtended("12586");
3042
```
3143

3244
These changes streamline the code and provide a more intuitive and concise syntax for accessing

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@untidy/thetvdb",
33
"description": "Client library for TheTVDB API in Node.js",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"type": "module",
66
"exports": {
77
".": {

0 commit comments

Comments
 (0)