Skip to content

Commit a3d719e

Browse files
authored
chore: fmt (#63)
* chore: fmt * chore: bump version
1 parent ee217d0 commit a3d719e

File tree

22 files changed

+121
-222
lines changed

22 files changed

+121
-222
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
rustc --version
3333
cargo --version
3434
cargo build --release -p netsaur
35-
deno run -Ar jsr:@deno/[email protected].1 -p netsaur --out src/backends/wasm/lib
36-
deno run -Ar jsr:@deno/[email protected].1 -p netsaur-tokenizers --out tokenizers/lib
35+
deno run -Ar jsr:@deno/[email protected].2 -p netsaur --out src/backends/wasm/lib
36+
deno run -Ar jsr:@deno/[email protected].2 -p netsaur-tokenizers --out tokenizers/lib
3737
- name: Release
3838
uses: softprops/action-gh-release@master
3939
env:

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
package.version = "0.4.0"
2+
package.version = "0.4.1"
33
members = ["crates/*"]
44
resolver = "2"
55

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@denosaurs/netsaur",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"exports": {
55
".": "./mod.ts",
66
"./web": "./web.ts",

deno.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/src/backends/cpu/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const options: FetchOptions = {
1515
name: "netsaur",
1616
url: new URL(import.meta.url).protocol !== "file:"
1717
? new URL(
18-
"https://github.com/denosaurs/netsaur/releases/download/0.4.0/",
18+
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/",
1919
import.meta.url,
2020
)
2121
: "./target/release/",

packages/core/src/backends/gpu/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const options: FetchOptions = {
1515
name: "netsaur_gpu",
1616
url: new URL(import.meta.url).protocol !== "file:"
1717
? new URL(
18-
"https://github.com/denosaurs/netsaur/releases/download/0.3.2-patch/",
18+
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/",
1919
import.meta.url,
2020
)
2121
: "./target/release/",

packages/core/src/backends/wasm/lib/netsaur.generated.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ const imports = {
217217
__wbindgen_object_drop_ref: function (arg0) {
218218
takeObject(arg0);
219219
},
220-
__wbg_log_023d7669e382bddf: function (arg0, arg1) {
220+
__wbg_log_6f7dfa87fad40a57: function (arg0, arg1) {
221221
console.log(getStringFromWasm0(arg0, arg1));
222222
},
223223
__wbindgen_number_new: function (arg0) {
Binary file not shown.

packages/core/src/backends/wasm/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class WASMInstance {
2222
await instantiate({
2323
url: new URL(import.meta.url).protocol !== "file:"
2424
? new URL(
25-
"https://github.com/denosaurs/netsaur/releases/download/0.3.2-patch/netsaur_bg.wasm",
25+
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/netsaur_bg.wasm",
2626
import.meta.url,
2727
)
2828
: undefined,

0 commit comments

Comments
 (0)