Skip to content

Commit bb61f69

Browse files
authored
Upgrade pana to 0.11.6 (#1442)
1 parent 12dcc77 commit bb61f69

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/lib/shared/versions.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import 'package:pub_semver/pub_semver.dart';
77
import 'utils.dart' show isNewer;
88

99
// update this whenever one of the other versions change
10-
final String runtimeVersion = '2018.7.5';
10+
final String runtimeVersion = '2018.7.11';
1111
final Version semanticRuntimeVersion = new Version.parse(runtimeVersion);
1212

1313
// keep in-sync with SDK version in .travis.yml, .mono_repo.yml and Dockerfile
1414
final String sdkVersion = '2.0.0-dev.66.0';
1515
final Version semanticSdkVersion = new Version.parse(sdkVersion);
1616

1717
// keep in-sync with app/pubspec.yaml
18-
final String panaVersion = '0.11.5';
18+
final String panaVersion = '0.11.6';
1919
final Version semanticPanaVersion = new Version.parse(panaVersion);
2020

2121
final String flutterVersion = '0.5.5';

app/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ packages:
399399
name: pana
400400
url: "https://pub.dartlang.org"
401401
source: hosted
402-
version: "0.11.5"
402+
version: "0.11.6"
403403
path:
404404
dependency: "direct main"
405405
description:

app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies:
3434
yaml: '^2.1.12'
3535
# pana version to be pinned
3636
# keep in-sync with app/lib/shared/versions.dart
37-
pana: '0.11.5'
37+
pana: '0.11.6'
3838
# 3rd-party packages with pinned versions
3939
archive: '2.0.0'
4040
uuid: '1.0.0'

app/test/shared/versions_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void main() {
2020
dartdocVersion,
2121
customizationVersion,
2222
].join('//').hashCode;
23-
expect(hash, 836425494);
23+
expect(hash, 25323727);
2424
});
2525

2626
test('sdk version should match travis and dockerfile', () async {

0 commit comments

Comments
 (0)