Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Feb 22, 2017
1 parent b0631c8 commit 2c23364
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/background-process/bkr.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var packageJson = require('./package.json')
var debug = require('debug')('beaker')

const BEAKER_VERSION = packageJson.version
const MIN_BKR_VERSION = '1.1.0'
const MIN_BKR_VERSION = '2.0.0'

// constants
// =
Expand Down Expand Up @@ -49,7 +49,7 @@ export function setup () {
if (!semver.valid(bkrVersion) || semver.lt(bkrVersion, MIN_BKR_VERSION)) {
return Promise.reject({
code: 400,
message: `Bkr version is ${bkrVersion} and minimum required is ${MIN_BKR_VERSION}. Can you update bkr?`
message: `Bkr version is ${bkrVersion} and minimum required is ${MIN_BKR_VERSION}. Please update bkr!`
})
}
return Promise.resolve(BEAKER_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "Beaker Browser",
"description": "An Experimental Peer-to-Peer Web Browser.",
"homepage": "https://beakerbrowser.com/",
"version": "0.6.0",
"version": "0.6.1",
"author": "Paul Frazee <[email protected]>",
"copyright": "© 2016, Paul Frazee",
"main": "background-process.build.js",
Expand Down

0 comments on commit 2c23364

Please sign in to comment.