Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: bump version to 3.0 alpha #5082

Merged
merged 3 commits into from
May 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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