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

Commit fa238a6

Browse files
committed
1.0.0-prerelease.7
1 parent 219ec3e commit fa238a6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"productName": "Beaker Browser",
44
"description": "An Experimental Peer-to-Peer Web Browser.",
55
"homepage": "https://beakerbrowser.com/",
6-
"version": "1.0.0-prerelease.6",
6+
"version": "1.0.0-prerelease.7",
77
"author": "Blue Link Labs <[email protected]>",
88
"copyright": "© 2020, Blue Link Labs",
99
"main": "main.build.js",

app/userland/desktop/js/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ import './views/recent.js'
1818
import css from '../css/main.css.js'
1919

2020
const VERSION_ID = (major, minor, patch, pre) => major * 1e9 + minor * 1e6 + patch * 1e3 + pre
21-
const CURRENT_VERSION = VERSION_ID(1, 0, 0, 6)
21+
const CURRENT_VERSION = VERSION_ID(1, 0, 0, 7)
2222
const RELEASES = [
23+
{ label: '1.0, Beta 7', url: 'https://beakerbrowser.com/2020/07/15/beaker-1-0-beta-7.html' },
2324
{ label: '1.0, Beta 6', url: 'https://beakerbrowser.com/2020/07/10/beaker-1-0-beta-6.html' },
2425
{ label: '1.0, Beta 5', url: 'https://beakerbrowser.com/2020/06/19/beaker-1-0-beta-5.html' },
2526
{ label: '1.0, Beta 4', url: 'https://beakerbrowser.com/2020/06/04/beaker-1-0-beta-4.html' },

0 commit comments

Comments
 (0)