diff --git a/CHANGELOG.md b/CHANGELOG.md index d5f6f8b8..ff9e18b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v1.0.0 - 2017-05-12 + +### Features + +- Implement a dynamic finish page. +- Display nicer error dialog when reading an invalid image. + +### Fixes + +- Prevent drive from getting re-mounted in macOS even when the unmount on success setting is enabled. +- Fix `ECONNRESET` and `ECONNREFUSED` errors when checking for updates on unstable connections. +- Fix application stuck at "Starting..." on Windows. +- Fix error on startup when Windows username contained an ampersand. + ## v1.0.0-rc.5 - 2017-05-02 ### Fixes diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 8d9a5f17..1424684a 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "etcher", - "version": "1.0.0-rc.5", + "version": "1.0.0", "dependencies": { "@types/angular": { "version": "1.6.17", diff --git a/package.json b/package.json index 89fe0999..522d4b82 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0-rc.5", + "version": "1.0.0", "updates": { "semverRange": "<2.0.0" }, @@ -58,7 +58,7 @@ "builder": { "win": { "title": "Etcher", - "version": "v1.0.0-rc.5", + "version": "v1.0.0", "publisher": "Resin.io", "icon": "assets/icon.ico", "verbosity": 1 diff --git a/screenshot.png b/screenshot.png index 91511cdf..23a3853f 100644 Binary files a/screenshot.png and b/screenshot.png differ