From 58596429c2f30bdee38ab0a5c32072737e7f6a7b Mon Sep 17 00:00:00 2001 From: cmorten Date: Tue, 18 May 2021 08:41:51 +0100 Subject: [PATCH] feat: 0.8.3 --- .github/CHANGELOG.md | 4 ++++ README.md | 6 +++--- docs/_data/luath.yml | 2 +- docs/apis.md | 4 ++-- docs/guide.md | 4 ++-- docs/index.md | 2 +- examples/README.md | 2 +- version.ts | 2 +- 8 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index b23579d..a9e4498 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## [0.8.3] - 18-05-2021 + +- chore: no-op version release due to [failed publish](https://deno.land/status/60a2e23500009d3a007bebb9) of `0.8.2` to `deno.land/x` - [root cause provided by Deno Team](https://discord.com/channels/684898665143206084/689420767620104201/843974771150422026) + ## [0.8.2] - 17-05-2021 - chore: no-op version release due to [failed publish](https://deno.land/status/60a2e10f00627501007bebb8) of `0.8.1` to `deno.land/x` diff --git a/README.md b/README.md index fdd1f9b..7dfa14f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Luath can be used either through a command line interface (CLI): ```bash # Install Luath -deno install -fqA --unstable --no-check https://deno.land/x/luath@0.8.2/luath.ts +deno install -fqA --unstable --no-check https://deno.land/x/luath@0.8.3/luath.ts # Serve the example luath serve ./examples/react @@ -59,13 +59,13 @@ luath run ./examples/react Or through it's JavaScript API: ```ts -import { server } from "https://deno.land/x/luath@0.8.2/mod.ts"; +import { server } from "https://deno.land/x/luath@0.8.3/mod.ts"; await server({ root: "./examples/vanilla" }); ``` ```ts -import { build } from "https://deno.land/x/luath@0.8.2/mod.ts"; +import { build } from "https://deno.land/x/luath@0.8.3/mod.ts"; await build({ root: "./examples/vanilla" }); ``` diff --git a/docs/_data/luath.yml b/docs/_data/luath.yml index 1abac23..94aac72 100644 --- a/docs/_data/luath.yml +++ b/docs/_data/luath.yml @@ -1 +1 @@ -current_version: "0.8.2" +current_version: "0.8.3" diff --git a/docs/apis.md b/docs/apis.md index 0bbf7a1..4fdfb39 100644 --- a/docs/apis.md +++ b/docs/apis.md @@ -12,13 +12,13 @@ lang: en

server: (options?: LuathOptions) => Promise

Create a Luath server with custom options. Resolves to an opine server.

For example:

-
import { server } from "https://deno.land/x/luath@0.8.2/mod.ts";
+      
import { server } from "https://deno.land/x/luath@0.8.3/mod.ts";
       
import { plugins } from "./plugins.ts";
await server({ root: Deno.cwd(), server: { port: 4000 }, plugins });

build: (options?: LuathOptions) => Promise

Builds the production assets.

For example:

-
import { build } from "https://deno.land/x/luath@0.8.2/mod.ts";
+      
import { build } from "https://deno.land/x/luath@0.8.3/mod.ts";
       
import { plugins } from "./plugins.ts";
await build({ root: Deno.cwd(), plugins });
diff --git a/docs/guide.md b/docs/guide.md index 53dc4cf..6ba67fb 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -18,7 +18,7 @@ lang: en

Running Your First Luath Project

Install the Luath CLI using Deno:

-
$ deno install -fqA --unstable https://deno.land/x/luath@0.8.2/luath.ts
+
$ deno install -fqA --unstable https://deno.land/x/luath@0.8.3/luath.ts

Then follow any prompts from the Deno command. For example, you may need to add the Deno bin directory to your path:

$ export PATH="$HOME/.deno/bin:$PATH"

You are now set to use Luath. Let's try it out with one of the Luath repo examples:

@@ -39,7 +39,7 @@ lang: en
$ luath --help
 
   Usage:   luath [root:string]
-  Version: v0.8.2
+  Version: v0.8.3
 
   Description:
 
diff --git a/docs/index.md b/docs/index.md
index 81c619b..ffdb3a7 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -9,7 +9,7 @@ lang: en
     
     
     

Fast front-end development tooling in Deno.

-
$ deno install -fqA --unstable https://deno.land/x/luath@0.8.2/luath.ts
+
$ deno install -fqA --unstable https://deno.land/x/luath@0.8.3/luath.ts
diff --git a/examples/README.md b/examples/README.md index 57d1233..7cf4092 100644 --- a/examples/README.md +++ b/examples/README.md @@ -21,7 +21,7 @@ To run an example: 2. Install the Luath CLI: ```bash - deno install -fqA --unstable --no-check https://deno.land/x/luath@0.8.2/luath.ts + deno install -fqA --unstable --no-check https://deno.land/x/luath@0.8.3/luath.ts ``` 3. Then run the desired example by navigating to the directory and running the appropriate Luath `serve` command. E.g. diff --git a/version.ts b/version.ts index 459ea4b..7377f5f 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const version = "0.8.2"; +export const version = "0.8.3";