Skip to content

Commit 105da9e

Browse files
authored
Prepare to publish (#508)
* prep for publish
1 parent 61e6c5b commit 105da9e

File tree

10 files changed

+34
-17
lines changed

10 files changed

+34
-17
lines changed

_test/pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ environment:
1010
dependencies:
1111
intl: ^0.15.8
1212
path: ^1.6.1
13-
webdev: ^2.0.0
1413

1514
dev_dependencies:
16-
build_runner: ^1.0.0
15+
build_runner: ^1.6.2
1716
build_web_compilers: '>=1.0.0 <3.0.0'

dwds/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.4.0-dev
1+
## 0.4.0
22

33
- Move `data` abstractions from `package:webdev` into `package:dwds`.
44
- Move debugging related handlers from `package:webdev` into `package:dwds`.

dwds/pubspec.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dwds
2-
version: 0.3.3
2+
version: 0.4.0
33
author: Dart Team <misc@dartlang.org>
44
homepage: https://github.com/dart-lang/webdev/tree/master/dwds
55
description: >-
@@ -10,24 +10,35 @@ environment:
1010
sdk: ">=2.3.2-dev.0.1 <3.0.0"
1111

1212
dependencies:
13+
async: ^2.3.0
14+
build: ^1.1.0
15+
build_daemon: ^2.0.0
16+
built_collection: ^4.2.0
17+
built_value: ^6.7.0
18+
crypto: ^2.0.6
1319
devtools: ^0.1.0
1420
http: ^0.12.0
1521
http_multi_server: ^2.0.0
22+
logging: ^0.11.3
1623
meta: ^1.1.7
1724
path: ^1.6.0
1825
pedantic: ^1.5.0
1926
pub_semver: ^1.4.2
2027
shelf: ^0.7.0
2128
shelf_proxy: ^0.1.0+6
29+
shelf_static: ^0.2.8
2230
shelf_web_socket: ^0.2.0
2331
source_maps: ^0.10.0
32+
sse: ^2.0.2
33+
stream_channel: ^2.0.0
2434
vm_service_lib: 3.20.0+02
2535
web_socket_channel: ^1.0.0
2636
webkit_inspection_protocol: ^0.4.0
2737

2838
dev_dependencies:
2939
args: ^1.0.0
30-
build_runner: ^1.0.0
40+
build: ^1.1.5
41+
build_runner: ^1.6.2
3142
build_web_compilers: '>=1.0.0 <3.0.0'
3243
built_value_generator: ^6.4.0
3344
graphs: ^0.2.0

example/pubspec.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ dependencies:
1111
angular_components: ^0.13.0
1212

1313
dev_dependencies:
14-
build_runner: '>=1.3.0 <2.0.0'
14+
build_runner: '>=1.6.2 <2.0.0'
1515
build_web_compilers: '>=1.0.0 <3.0.0'
1616
webdev: ^2.0.0
17+
18+
dependency_overrides:
19+
webdev:
20+
path: ../webdev
21+
dwds:
22+
path: ../dwds

webdev/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 2.3.0-dev
1+
## 2.3.0
22

33
- Depend on the latest `package:dwds`.
4+
- Depend on the latest `package:build_daemon`.
45

56
## 2.2.0
67

webdev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ similar to:
1414
```yaml
1515
...
1616
dev_dependencies:
17-
build_runner: ^1.3.0
17+
build_runner: ^1.6.2
1818
build_web_compilers: ^2.0.0
1919
...
2020
```

webdev/lib/src/pubspec.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class PubspecLock {
140140

141141
Future<List<PackageExceptionDetails>> _validateBuildDaemonVersion(
142142
PubspecLock pubspecLock) async {
143-
var buildDaemonConstraint = '>=1.0.0 <2.0.0';
143+
var buildDaemonConstraint = '>=2.0.0 <3.0.0';
144144

145145
var issues = <PackageExceptionDetails>[];
146146

@@ -180,7 +180,7 @@ Future<void> checkPubspecLock(PubspecLock pubspecLock,
180180
var issues = <PackageExceptionDetails>[];
181181

182182
var buildRunnerIssues = pubspecLock.checkPackage(
183-
'build_runner', VersionConstraint.parse('>=1.5.0 <2.0.0'));
183+
'build_runner', VersionConstraint.parse('>=1.6.2 <2.0.0'));
184184

185185
issues.addAll(buildRunnerIssues);
186186

webdev/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webdev/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webdev
22
# Every time this changes you need to run `pub run build_runner build`.
3-
version: 2.3.0-dev
3+
version: 2.3.0
44
author: Dart Team <misc@dartlang.org>
55
homepage: https://github.com/dart-lang/webdev
66
description: >-
@@ -13,7 +13,7 @@ environment:
1313
dependencies:
1414
args: ^1.5.0
1515
async: ^2.2.0
16-
build_daemon: ^1.1.0
16+
build_daemon: ^2.0.0
1717
built_value: ^6.3.0
1818
crypto: ^2.0.6
1919
dwds: ^0.4.0
@@ -37,7 +37,7 @@ dependencies:
3737

3838
dev_dependencies:
3939
build: ^1.0.0
40-
build_runner: ^1.0.0
40+
build_runner: ^1.6.2
4141
build_verify: ^1.0.0
4242
build_version: ^2.0.0
4343
test: ^1.6.0

webdev/test/integration_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ name: sample
143143
switch (entry.key) {
144144
case 'build_runner':
145145
buildRunnerVersion = version;
146-
supportedRange = '>=1.5.0 <2.0.0';
146+
supportedRange = '>=1.6.2 <2.0.0';
147147
break;
148148
case 'build_web_compilers':
149149
webCompilersVersion = version;
@@ -288,9 +288,9 @@ dependencies:
288288
}
289289
}
290290

291-
const _supportedBuildRunnerVersion = '1.5.0';
291+
const _supportedBuildRunnerVersion = '1.6.2';
292292
const _supportedWebCompilersVersion = '1.2.0';
293-
const _supportedBuildDaemonVersion = '1.0.0';
293+
const _supportedBuildDaemonVersion = '2.0.0';
294294

295295
String _pubspecLock(
296296
{String runnerVersion = _supportedBuildRunnerVersion,

0 commit comments

Comments
 (0)