Browse Source

Bugfix release v2.0.2 README

hmt 4 months ago
parent
commit
45096a113c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      README.md
  2. 1 1
      main.ts

+ 1 - 1
README.md

@@ -67,7 +67,7 @@ Then create a `servers.json` file like this here:
 Now you are ready to start the script. Make sure to have an environment variable
 Now you are ready to start the script. Make sure to have an environment variable
 called `TINYSCALE_SECRET`:
 called `TINYSCALE_SECRET`:
 
 
-    TINYSCALE_SECRET=some_secret_string deno run --allow-net --allow-env https://deno.land/x/tinyscale@v2.0.0/main.ts
+    TINYSCALE_SECRET=some_secret_string deno run --allow-net --allow-env https://deno.land/x/tinyscale@v2.0.2/main.ts
 
 
 tinyscale will then run on port 8000 and you will have to set up your reverse
 tinyscale will then run on port 8000 and you will have to set up your reverse
 proxy so that it can pick up requests. If you prefer a different port you can
 proxy so that it can pick up requests. If you prefer a different port you can

+ 1 - 1
main.ts

@@ -7,7 +7,7 @@ import { red, green, yellow } from "@std/fmt/colors";
 const SECRET = Deno.env.get("TINYSCALE_SECRET");
 const SECRET = Deno.env.get("TINYSCALE_SECRET");
 const _port = Deno.env.get("PORT");
 const _port = Deno.env.get("PORT");
 const PORT = _port ? parseInt(_port) : undefined;
 const PORT = _port ? parseInt(_port) : undefined;
-const VERSION = 'v2.0.1'
+const VERSION = 'v2.0.2'
 
 
 if (SECRET === undefined)
 if (SECRET === undefined)
 	throw "No `TINYSCALE_SECRET` set. tinyscale will exit.";
 	throw "No `TINYSCALE_SECRET` set. tinyscale will exit.";