Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed Sep 24, 2018
1 parent 2da0d8e commit c20557d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

### Features

Users can pass an initial layout (TODO: Documentation)
- Users can pass an initial layout (TODO: Documentation)

## 1.2.0

### Features

- Users can register an `onWillClose` callback, which is passed a `cancel` function. The `cancel` function can be called to prevent Webamp from closing. [#655](https://github.com/captbaritone/webamp/pull/655)

### Internal changes

- Webamp is now mostly built with [TypeScript](https://www.typescriptlang.org/).

## 1.1.2

Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div id='app'>
<!-- Webamp will attempt to center itself within this div -->
</div>
<script src="https://unpkg.com/webamp@1.1.2/built/webamp.bundle.min.js"></script>
<script src="https://unpkg.com/webamp@1.2.0/built/webamp.bundle.min.js"></script>
<script>
const Webamp = window.Webamp;
new Webamp({
Expand Down
2 changes: 1 addition & 1 deletion examples/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"license": "ISC",
"dependencies": {
"webpack-cli": "^2.0.13",
"webamp": "1.1.2"
"webamp": "1.2.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webamp",
"version": "1.1.2",
"version": "1.2.0",
"description": "Winamp 2 implemented in HTML5 and JavaScript",
"main": "built/webamp.bundle.js",
"files": [
Expand Down

0 comments on commit c20557d

Please sign in to comment.