Skip to content

Commit 0b66be7

Browse files
committed
chore: bump version
1 parent 7b6072b commit 0b66be7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ more space efficient encoding than base64
99
Encoding:
1010

1111
```ts
12-
import { encode } from "https://deno.land/x/base91/base91.ts";
12+
import { encode } from "https://deno.land/x/base91@v1.1.1/base91.ts";
1313
const encoder = new TextEncoder(); //converts utf-8 string to Uint8Array
1414
const input = encoder.encode("test"); //Uint8Array(4) [ 116, 101, 115, 116 ]
1515
const result = encode(input); //"fPNKd"
@@ -18,7 +18,7 @@ const result = encode(input); //"fPNKd"
1818
Decoding:
1919

2020
```ts
21-
import { decode } from "https://deno.land/x/base91/base91.ts";
21+
import { decode } from "https://deno.land/x/base91@v1.1.1/base91.ts";
2222
const decoder = new TextDecoder("utf-8"); //used to convert Uint8Array to utf-8 string
2323
const result = decode("fPNKd"); //Uint8Array(4) [ 116, 101, 115, 116 ]
2424
const output = decoder.decode(result); //"test"

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@opliko/base91",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"exports": "./base91.ts"
55
}

0 commit comments

Comments
 (0)