From aded0823f4edef400e0fcd7fe804ca1b682eaf1a Mon Sep 17 00:00:00 2001 From: Mihir Pathak Date: Mon, 24 Sep 2018 15:56:50 +0530 Subject: [PATCH] bump v1.5.0 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/modules/AutoUpdater.js | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2da9a05..0e294fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.5.0] - 2018-08-19 +** NOTE - ** This is the final release for 1.x.x. I will shortly begin work on 2.x :grin: + +This branch may or may not recieve bug fixes. Feel free to fork the repo and make changes + +### Changed +- Updated node packages + - electron - 2.0.7 -> 2.0.10 + ## [1.5.0-beta1] - 2018-08-19 ### Added - Logging! Now it's easier to debug the application diff --git a/package.json b/package.json index d16c1fd..6ed9016 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "audius", "productName": "Audius", - "version": "1.5.0-beta1", + "version": "1.5.0", "description": "A cross-platform app for downloading songs from YouTube and Spotify", "author": { "name": "Mihir Pathak", diff --git a/src/modules/AutoUpdater.js b/src/modules/AutoUpdater.js index d0822fa..642edf9 100644 --- a/src/modules/AutoUpdater.js +++ b/src/modules/AutoUpdater.js @@ -13,7 +13,7 @@ var log = require('electron-log'); * Refer electron-builder docs */ log.info('[AutoUpdater.js] Checking for updates'); -autoUpdater.channel = 'beta'; +// autoUpdater.channel = 'beta'; autoUpdater.checkForUpdatesAndNotify(); // Done in two lines :)