Skip to content

Commit

Permalink
core: bump version to 3.0 alpha (#5082)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish authored May 2, 2018
1 parent d7fdb1d commit f01184d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ describe('ReportRenderer', () => {
it('renders a footer', () => {
const footer = renderer._renderReportFooter(sampleResults);
const footerContent = footer.querySelector('.lh-footer').textContent;
assert.ok(footerContent.includes('Generated by Lighthouse 2'), 'includes lh version');
assert.ok(/Generated by Lighthouse \d/.test(footerContent), 'includes lh version');
assert.ok(footerContent.match(TIMESTAMP_REGEX), 'includes timestamp');
});
});
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/results/sample_v2.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3358.0 Safari/537.36",
"lighthouseVersion": "2.9.1",
"lighthouseVersion": "3.0.0-alpha",
"fetchedAt": "2018-03-13T00:55:45.840Z",
"generatedTime": "Please use .fetchedAt instead",
"initialUrl": "http://localhost/dobetterweb/dbw_tester.html",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lighthouse",
"version": "2.9.1",
"version": "3.0.0-alpha",
"description": "Lighthouse",
"main": "./lighthouse-core/index.js",
"bin": {
Expand Down

0 comments on commit f01184d

Please sign in to comment.