Skip to content

Commit

Permalink
feat: 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cmorten committed May 18, 2021
1 parent c1ef3d9 commit 5859642
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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" });
```
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/luath.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version: "0.8.2"
current_version: "0.8.3"
4 changes: 2 additions & 2 deletions docs/apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ lang: en
<h3><code>server: (options?: LuathOptions) => Promise</code></h3>
<p>Create a Luath server with custom options. Resolves to an <a href="https://github.com/asos-craigmorten/opine"><code>opine</code></a> server.</p>
<p>For example:</p>
<pre><code>import { server } from "https://deno.land/x/luath@0.8.2/mod.ts";
<pre><code>import { server } from "https://deno.land/x/luath@0.8.3/mod.ts";
<br />import { plugins } from "./plugins.ts";
<br />await server({ root: Deno.cwd(), server: { port: 4000 }, plugins });</code></pre>
<h3><code>build: (options?: LuathOptions) => Promise</code></h3>
<p>Builds the production assets.</p>
<p>For example:</p>
<pre><code>import { build } from "https://deno.land/x/luath@0.8.2/mod.ts";
<pre><code>import { build } from "https://deno.land/x/luath@0.8.3/mod.ts";
<br />import { plugins } from "./plugins.ts";
<br />await build({ root: Deno.cwd(), plugins });</code></pre>
</section>
Expand Down
4 changes: 2 additions & 2 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lang: en
<section class="subsection">
<h2 id="running-your-first-luath-project">Running Your First Luath Project</h2>
<p>Install the Luath CLI using <a href="https://deno.land/">Deno</a>:</p>
<pre><code>$ deno install -fqA --unstable https://deno.land/x/luath@0.8.2/luath.ts</code></pre>
<pre><code>$ deno install -fqA --unstable https://deno.land/x/luath@0.8.3/luath.ts</code></pre>
<p>Then follow any prompts from the Deno command. For example, you may need to add the Deno bin directory to your path:</p>
<pre><code>$ export PATH="$HOME/.deno/bin:$PATH"</code></pre>
<p>You are now set to use Luath. Let's try it out with one of the Luath repo examples:</p>
Expand All @@ -39,7 +39,7 @@ lang: en
<pre><code>$ luath --help

Usage: luath [root:string]
Version: v0.8.2
Version: v0.8.3

Description:

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lang: en
<img src="images/favicon.png" alt="Deno zooming through the lighting storm that is front-end development" class="logo" />
<div class="title"><a href="/luath/" class="luath">Luath</a><span><a href="https://github.com/cmorten/luath/blob/main/.github/CHANGELOG.md" class="version">{{ site.data.luath.current_version }}</a></span></div>
<p class="description">Fast front-end development tooling in <a href="https://deno.land/">Deno</a>.</p>
<pre><code>$ deno install -fqA --unstable https://deno.land/x/luath@0.8.2/luath.ts</code></pre>
<pre><code>$ deno install -fqA --unstable https://deno.land/x/luath@0.8.3/luath.ts</code></pre>
<div><a href="/luath/guide" class="primary get-started">Get Started</a></div>
</section>
</main>
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "0.8.2";
export const version = "0.8.3";

0 comments on commit 5859642

Please sign in to comment.