Skip to content
This repository was archived by the owner on Jul 21, 2024. It is now read-only.

Commit 14ecaf1

Browse files
committed
release: 0.6.0
1 parent fd18875 commit 14ecaf1

File tree

6 files changed

+102
-272
lines changed

6 files changed

+102
-272
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v6.0.0 (2023-01-14)
2+
3+
- BREAKING: You must now import functions from the package itself - replace any imports from `revchiver/dist` with imports from `revchiver`.
4+
- Reactions are now archived.
5+
- Updated to Revolt.JS v6.0.19.
6+
17
# v0.5.4 (2022-11-08)
28

39
- The timestamp/archiver ID should now always be correct.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Archiving library for Revolt.
77
Basic example - **make sure to pass Revolt.JS messages to the function**:
88

99
```ts
10-
import { archiveChannel } from "revchiver/dist";
10+
import { archiveChannel } from "revchiver";
1111

1212
const msg = "<insert revolt.js message object here>";
1313
const ignoredMsgs = ["array", "of", "message", "objects"];

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { archiveChannel } from "./src/index";

0 commit comments

Comments
 (0)