Skip to content

Commit

Permalink
chore: bump to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Sep 22, 2022
1 parent cfbd58d commit f196a70
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.2.0
version: 0.2.1
commit: 'chore: bump to %.%.%'
files:
README.md:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://raw.githubusercontent.com/kt3k/packup/main/docs/logo-v2.svg" width="400" />

# packup v0.2.0
# packup v0.2.1

[![ci](https://github.com/kt3k/packup/actions/workflows/ci.yml/badge.svg)](https://github.com/kt3k/packup/actions/workflows/ci.yml)

Expand All @@ -18,7 +18,7 @@
Install via deno.land/x:

```shell
deno install -qAf https://deno.land/x/packup@v0.2.0/cli.ts
deno install -qAf https://deno.land/x/packup@v0.2.1/cli.ts
```

Write HTML and JavaScript:
Expand Down Expand Up @@ -106,6 +106,7 @@ details.

# History

- 2022-09-22 v0.2.1 Fix path issues on windows. #50
- 2022-09-22 v0.2.0 Update esbuild. #49
- 2022-09-11 v0.1.14 Add import map support. #47
- 2022-07-12 v0.1.13 Add `<DOCTYPE html>` to html by default. #44 tag. #39
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ export { opn } from "https://raw.githubusercontent.com/hashrock/deno-opn/b358e4c
export { serve as serveIterable } from "https://deno.land/x/iterable_file_server@v0.2.0/mod.ts";

export const NAME = "packup";
export const VERSION = "v0.2.0";
export const VERSION = "v0.2.1";
2 changes: 1 addition & 1 deletion docs/_includes/layout.njk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ menu:
</a>

<p class="mt-2 text-gray-800">
<a href="https://deno.land/x/packup@v0.2.0" class="hover:underline" target="_blank">Latest version <strong>v0.2.0</strong></a>
<a href="https://deno.land/x/packup@v0.2.1" class="hover:underline" target="_blank">Latest version <strong>v0.2.1</strong></a>
</p>

<ul class="mt-6 text-gray-800">
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ You need [Deno](https://deno.land/) (>=1.10.3) installed.
You can install `packup` with the following command.

```sh
deno run -A https://deno.land/x/packup@v0.2.0/install.ts
deno run -A https://deno.land/x/packup@v0.2.1/install.ts
```

Then you'll have `packup` installed.

```sh
$ packup -v
packup v0.2.0
packup v0.2.1
```

## Basic Usage
Expand Down

0 comments on commit f196a70

Please sign in to comment.