diff --git a/CHANGELOG.md b/CHANGELOG.md index 03380dcf7..0091aafed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [0.5.0] ### Added - strict mode - breaks/microbreaks can't be finished early +- build for ia32 and x64 ### Fixed - wrong window placement when on Linux and more displays @@ -63,7 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - resume/pause functionality for reminder - scripts for creating installers for OS X, Windows, Linux -[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/hovancik/stretchly/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/hovancik/stretchly/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/hovancik/stretchly/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/hovancik/stretchly/compare/v0.2.0...v0.2.1 diff --git a/app/package.json b/app/package.json index 72b7f40fb..aa3c43350 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "stretchly", - "version": "0.4.0", + "version": "0.5.0", "description": "break time reminder app", "main": "main.js", "repository": { diff --git a/package.json b/package.json index 5763fbbf3..d577682d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stretchly", - "version": "0.4.0", + "version": "0.5.0", "description": "break time reminder app", "engines": { "node": "6.5.0" @@ -12,7 +12,7 @@ "pack-all": "build --dir -mwl --x64 --ia32", "dist-all": "build -mwl --x64 --ia32", "pack": "build --dir", - "dist": "build", + "dist": "build --x64 --ia32", "test": "mocha tests" }, "repository": { @@ -34,9 +34,9 @@ "devDependencies": { "chai": "^3.5.0", "chai-as-promised": "^6.0.0", - "electron": "^1.4.5", - "electron-builder": "^8.5.3", - "mocha": "^3.1.2", + "electron": "^1.4.8", + "electron-builder": "^8.6.0", + "mocha": "^3.2.0", "spectron": "^3.4.0" }, "build": {