Skip to content

Commit

Permalink
chore: package version update
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Oct 14, 2023
1 parent 9e90b10 commit 1da53f9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ NOTE: Require `--unstable --allow-read --allow-env --allow-write --allow-net`!
## Example

```ts
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.23/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.24/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
12 changes: 6 additions & 6 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export { grantOrThrow } from "https://deno.land/std@0.203.0/permissions/mod.ts";
export { EventEmitter } from "https://deno.land/std@0.203.0/node/events.ts"; // TODO: Stop using node!
export { Buffer } from "https://deno.land/std@0.203.0/node/buffer.ts"; // TODO: Stop using node!
export { grantOrThrow } from "https://deno.land/std@0.204.0/permissions/mod.ts";
export { EventEmitter } from "https://deno.land/std@0.204.0/node/events.ts"; // TODO: Stop using node!
export { Buffer } from "https://deno.land/std@0.204.0/node/buffer.ts"; // TODO: Stop using node!

export * as path from "https://deno.land/std@0.203.0/path/mod.ts";
export * as net from "https://deno.land/std@0.203.0/node/net.ts"; // TODO: Stop using node!
export * as path from "https://deno.land/std@0.204.0/path/mod.ts";
export * as net from "https://deno.land/std@0.204.0/node/net.ts"; // TODO: Stop using node!

export type {
ActivityType,
Expand All @@ -19,4 +19,4 @@ export type {
PresenceUpdateStatus,
UserFlags,
UserPremiumType,
} from "https://deno.land/x/discord_api_types@0.37.58/v10.ts";
} from "https://deno.land/x/discord_api_types@0.37.60/v10.ts";
2 changes: 1 addition & 1 deletion examples/simple_oauth.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.23/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.24/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_oauth.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.23/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.24/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_status.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.23/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.24/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_status.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.23/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@1.0.24/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down

0 comments on commit 1da53f9

Please sign in to comment.