Skip to content

Commit 52c6b14

Browse files
committed
3.3.0
1 parent 74d4f83 commit 52c6b14

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](unreleased)
8+
## [3.3.0] - 2020-05-20
99

1010
- Add `unpkg`, `jsdelivr` and `exports` fields to package.json
1111
([#18](https://github.com/kriasoft/hyperapp-render/pull/18)).
@@ -56,7 +56,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5656

5757
- Initial public release.
5858

59-
[unreleased]: https://github.com/kriasoft/hyperapp-render/compare/v3.2.0...HEAD
59+
[unreleased]: https://github.com/kriasoft/hyperapp-render/compare/v3.3.0...HEAD
60+
[3.3.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.2.0...v3.3.0
6061
[3.2.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.1.0...v3.2.0
6162
[3.1.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.0.0...v3.1.0
6263
[3.0.0]: https://github.com/kriasoft/hyperapp-render/compare/v2.1.0...v3.0.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ npm install hyperapp-render --save
6060
```
6161

6262
Or using a [CDN](https://en.wikipedia.org/wiki/Content_delivery_network) like
63-
[unpkg.com](https://unpkg.com/hyperapp-render/hyperapp-render.min.js) or
64-
[jsDelivr](https://cdn.jsdelivr.net/npm/hyperapp-render/hyperapp-render.min.js)
63+
[unpkg.com](https://unpkg.com/hyperapp-render) or
64+
[jsDelivr](https://cdn.jsdelivr.net/npm/hyperapp-render)
6565
with the following script tag:
6666

6767
```html
68-
<script src="https://unpkg.com/hyperapp-render/hyperapp-render.min.js"></script>
68+
<script src="https://unpkg.com/hyperapp-render"></script>
6969
```
7070

7171
You can find the library in `window.hyperappRender`.

dist/hyperapp-render.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hyperapp-render.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "hyperapp-render",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"description": "Render Hyperapp to an HTML string with SSR and Node.js streaming support",
66
"repository": "kriasoft/hyperapp-render",
77
"author": "Vladimir Kutepov",

tools/build.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ async function build() {
8282
sourcemap: true,
8383
exports: 'named',
8484
name: file.name,
85-
banner:
86-
'/*! Hyperapp Render | MIT Licence | https://github.com/kriasoft/hyperapp-render */\n',
85+
banner: `/*! Hyperapp Render v${pkg.version} | MIT Licence | https://github.com/kriasoft/hyperapp-render */\n`,
8786
})
8887
}),
8988
)

0 commit comments

Comments
 (0)