Skip to content

Commit 92affad

Browse files
committed
chore: bump to 0.1.12
1 parent d8097df commit 92affad

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.bmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.1.11
1+
version: 0.1.12
22
commit: 'chore: bump to %.%.%'
33
files:
44
README.md:

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://raw.githubusercontent.com/kt3k/packup/main/docs/logo-v2.svg" width="400" />
22

3-
# packup v0.1.11
3+
# packup v0.1.12
44

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

@@ -18,7 +18,7 @@
1818
Install via deno.land/x:
1919

2020
```shell
21-
deno run -A https://deno.land/x/packup@v0.1.11/install.ts
21+
deno run -A https://deno.land/x/packup@v0.1.12/install.ts
2222
```
2323

2424
Write HTML and JavaScript:
@@ -94,8 +94,8 @@ If you want to use packup without installing globally, you can use the following
9494
command.
9595

9696
```
97-
deno run --allow-env --allow-read --allow-write --allow-net=deno.land https://deno.land/x/packup@v0.1.11/ensure_esbuild_wasm.ts
98-
deno run -A https://deno.land/x/packup@v0.1.11/cli.ts <your parameters>
97+
deno run --allow-env --allow-read --allow-write --allow-net=deno.land https://deno.land/x/packup@v0.1.12/ensure_esbuild_wasm.ts
98+
deno run -A https://deno.land/x/packup@v0.1.12/cli.ts <your parameters>
9999
```
100100

101101
The first command ensures the esbuild wasm installed on your machine. The second
@@ -123,6 +123,7 @@ command is the actual entrypoint of the packup program.
123123

124124
# History
125125

126+
- 2021-12-27 v0.1.11 Add support of `<img>` `srcset` attribute and `<source>` tag. #39
126127
- 2021-12-22 v0.1.11 Add support of image imports (in html). #33
127128
- 2021-12-05 v0.1.10 Install wasm under `DENO_DIR` when it's specified. #31
128129
- 2021-12-05 v0.1.9 Add logging related to sass.

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ export { opn } from "https://raw.githubusercontent.com/hashrock/deno-opn/b358e4c
2424
export { serve as serveIterable } from "https://deno.land/x/iterable_file_server@v0.1.7/mod.ts";
2525

2626
export const NAME = "packup";
27-
export const VERSION = "v0.1.11";
27+
export const VERSION = "v0.1.12";

docs/_includes/layout.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ menu:
2828
</a>
2929

3030
<p class="mt-2 text-gray-800">
31-
<a href="https://deno.land/x/packup@v0.1.11" class="hover:underline" target="_blank">Latest version <strong>v0.1.11</strong></a>
31+
<a href="https://deno.land/x/packup@v0.1.12" class="hover:underline" target="_blank">Latest version <strong>v0.1.12</strong></a>
3232
</p>
3333

3434
<ul class="mt-6 text-gray-800">

docs/getting-started/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ You need [Deno](https://deno.land/) (>=1.10.3) installed.
1414
You can install `packup` with the following command.
1515

1616
```sh
17-
deno run -A https://deno.land/x/packup@v0.1.11/install.ts
17+
deno run -A https://deno.land/x/packup@v0.1.12/install.ts
1818
```
1919

2020
Then you'll have `packup` installed.
2121

2222
```sh
2323
$ packup -v
24-
packup v0.1.11
24+
packup v0.1.12
2525
```
2626

2727
## Basic Usage

0 commit comments

Comments
 (0)