Skip to content

Commit

Permalink
[tag] v0.2.45-3
Browse files Browse the repository at this point in the history
  • Loading branch information
subshell committed Dec 29, 2024
1 parent b64e8f2 commit 6530374
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Here are Subshell's advantages over existing Node.js based shells.
In fact, you can load the Subshell init script in Deno.

```
$ deno repl --unstable --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts
$ deno repl --unstable --eval-file=https://deno.land/x/subshell@0.2.45-3/init.ts
...
Deno 1.23.2
exit using ctrl+d or close()
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.2.45-3 Dec 30, 2024

- fix release tag

## 0.2.45-2 Dec 30, 2024

- remove ghcr action
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ RUN chmod 644 /cache/deno_history.txt

USER subshell

ENV SUBSHELL_VERSION 0.2.45-2
ENV SUBSHELL_VERSION 0.2.45-3

CMD hub
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ a Deno 🦕 repl, using polkadot-js extension as remote signer ✍️.
Start with browser extension integration

```
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-3/init.ts
```

Start in lite mode

```
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-2/tini.ts
$ deno repl --allow-net --allow-env --eval-file=https://deno.land/x/subshell@0.2.45-3/tini.ts
```
4 changes: 2 additions & 2 deletions init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import {
WsProvider,
} from "https://deno.land/x/polkadot@0.2.45/api/mod.ts";
import { GearApi } from "https://gear-js.deno.dev/api/src/index.ts";
import { Client } from "https://deno.land/x/subshell@0.2.45-2/client/mod.ts";
// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.45-2/signer/mod.ts";
import { Client } from "https://deno.land/x/subshell@0.2.45-3/client/mod.ts";
// import { VerboseSigner } from "https://deno.land/x/subshell@0.2.45-3/signer/mod.ts";
import { stringToU8a } from "https://deno.land/x/polkadot@0.2.45/util/mod.ts";

const GEAR = !!Deno.env.get("GEAR");
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ const status = await Deno.run({
"--allow-env",
"--no-prompt",
"--unstable",
"--eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts",
"--eval-file=https://deno.land/x/subshell@0.2.45-3/init.ts",
],
}).status();
4 changes: 2 additions & 2 deletions subsh-deno
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [[ "$1" == cache ]]; then
done
$DENO run --no-lock --unstable -A cache.ts
else
# $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts
# $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.45-3/init.ts
# $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --eval-file=./init.ts
$DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --allow-import --eval-file=https://deno.land/x/subshell@0.2.45-2/init.ts
$DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --allow-import --eval-file=https://deno.land/x/subshell@0.2.45-3/init.ts
fi

0 comments on commit 6530374

Please sign in to comment.