From 6dc03adde1a9f84866cd204378c061118616136a Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Tue, 2 Oct 2018 09:57:58 -0700 Subject: [PATCH 1/2] Extend analyzer range to 0.34 --- _test/pubspec.yaml | 2 +- bazel_codegen/pubspec.yaml | 2 +- build/pubspec.yaml | 2 +- build_modules/pubspec.yaml | 2 +- build_resolvers/pubspec.yaml | 2 +- build_test/pubspec.yaml | 2 +- build_vm_compilers/pubspec.yaml | 2 +- build_web_compilers/pubspec.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/_test/pubspec.yaml b/_test/pubspec.yaml index b82136c11..b229d0e11 100644 --- a/_test/pubspec.yaml +++ b/_test/pubspec.yaml @@ -5,7 +5,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dev_dependencies: - analyzer: ">=0.30.0 <0.33.0" + analyzer: ">=0.30.0 <0.34.0" path: ^1.4.2 test: ^1.0.0 provides_builder: diff --git a/bazel_codegen/pubspec.yaml b/bazel_codegen/pubspec.yaml index c2fed8ed0..1e2c237c7 100644 --- a/bazel_codegen/pubspec.yaml +++ b/bazel_codegen/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">=0.31.2-alpha.1 <0.33.0" + analyzer: ">=0.31.2-alpha.1 <0.34.0" args: ^1.4.1 bazel_worker: ^0.1.2 build: ">=0.12.7 <0.12.8" diff --git a/build/pubspec.yaml b/build/pubspec.yaml index 2ee9ac322..24736ddd8 100644 --- a/build/pubspec.yaml +++ b/build/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">=0.27.1 <0.33.0" + analyzer: ">=0.27.1 <0.34.0" async: ">=1.13.3 <3.0.0" crypto: ">=0.9.2 <3.0.0" logging: ^0.11.2 diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index 9de46eeab..afdf50e57 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">0.30.0 < 0.33.0" + analyzer: ">0.30.0 < 0.34.0" async: ">=1.13.3 <3.0.0" bazel_worker: ^0.1.4 build: ^0.12.3 diff --git a/build_resolvers/pubspec.yaml b/build_resolvers/pubspec.yaml index 496b72a04..61c837362 100644 --- a/build_resolvers/pubspec.yaml +++ b/build_resolvers/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">=0.27.1 <0.33.0" + analyzer: ">=0.27.1 <0.34.0" build: ">=0.12.7 <0.12.9" path: ^1.1.0 diff --git a/build_test/pubspec.yaml b/build_test/pubspec.yaml index e99c237d8..ad628e6b0 100644 --- a/build_test/pubspec.yaml +++ b/build_test/pubspec.yaml @@ -25,7 +25,7 @@ dependencies: watcher: ^0.9.7 dev_dependencies: - analyzer: ">=0.27.1 <0.33.0" + analyzer: ">=0.27.1 <0.34.0" build_runner: ^0.9.0 build_vm_compilers: ^0.1.0 collection: ^1.14.0 diff --git a/build_vm_compilers/pubspec.yaml b/build_vm_compilers/pubspec.yaml index be9d098c2..e28790f4a 100644 --- a/build_vm_compilers/pubspec.yaml +++ b/build_vm_compilers/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">=0.30.0 <0.33.0" + analyzer: ">=0.30.0 <0.34.0" build: ^0.12.0 build_modules: ^0.4.0 path: ^1.6.0 diff --git a/build_web_compilers/pubspec.yaml b/build_web_compilers/pubspec.yaml index b2f16f5a0..0d074b2e0 100644 --- a/build_web_compilers/pubspec.yaml +++ b/build_web_compilers/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.0.0 <3.0.0" dependencies: - analyzer: ">=0.30.0 <0.33.0" + analyzer: ">=0.30.0 <0.34.0" archive: ">=1.0.13 <3.0.0" bazel_worker: ^0.1.4 build: ^0.12.8 From 7e33709c51596e48f649d94dc99b313c86a2ab5d Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Tue, 2 Oct 2018 11:32:23 -0700 Subject: [PATCH 2/2] CHANGELOG and version updates --- bazel_codegen/CHANGELOG.md | 4 ++++ bazel_codegen/pubspec.yaml | 2 +- build/CHANGELOG.md | 4 ++++ build/pubspec.yaml | 2 +- build_modules/CHANGELOG.md | 4 ++++ build_modules/pubspec.yaml | 2 +- build_resolvers/CHANGELOG.md | 4 ++++ build_resolvers/pubspec.yaml | 2 +- build_test/CHANGELOG.md | 4 ++++ build_test/pubspec.yaml | 2 +- build_vm_compilers/CHANGELOG.md | 4 ++++ build_vm_compilers/pubspec.yaml | 2 +- 12 files changed, 30 insertions(+), 6 deletions(-) diff --git a/bazel_codegen/CHANGELOG.md b/bazel_codegen/CHANGELOG.md index 7cd3ae26f..463fbc103 100644 --- a/bazel_codegen/CHANGELOG.md +++ b/bazel_codegen/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.3.3+1 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + # 0.3.3 - Support `package:build` `v1.0.0`. diff --git a/bazel_codegen/pubspec.yaml b/bazel_codegen/pubspec.yaml index 46a27471d..92fe41f94 100644 --- a/bazel_codegen/pubspec.yaml +++ b/bazel_codegen/pubspec.yaml @@ -2,7 +2,7 @@ name: _bazel_codegen description: Bazel code generation runner author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/bazel_codegen -version: 0.3.3-dev +version: 0.3.3+1 environment: sdk: ">=2.0.0 <3.0.0" diff --git a/build/CHANGELOG.md b/build/CHANGELOG.md index d066a406c..575d5cce2 100644 --- a/build/CHANGELOG.md +++ b/build/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + ## 1.0.0 ### Breaking Changes diff --git a/build/pubspec.yaml b/build/pubspec.yaml index f3fdba382..33816a0c6 100644 --- a/build/pubspec.yaml +++ b/build/pubspec.yaml @@ -1,5 +1,5 @@ name: build -version: 1.0.0 +version: 1.0.1 description: A build system for Dart. author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/build diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index 16392b19a..c3ae21395 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + ## 1.0.0 ### Breaking Changes diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index be0490aa3..ae101baa7 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -1,5 +1,5 @@ name: build_modules -version: 1.0.0 +version: 1.0.1 description: Builders for Dart modules author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/build_modules diff --git a/build_resolvers/CHANGELOG.md b/build_resolvers/CHANGELOG.md index c4353b463..f6fa382ce 100644 --- a/build_resolvers/CHANGELOG.md +++ b/build_resolvers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.2+6 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + ## 0.2.2+5 - Increased the upper bound for the `build` to `<1.1.0`. diff --git a/build_resolvers/pubspec.yaml b/build_resolvers/pubspec.yaml index e041b5234..ea476f6e3 100644 --- a/build_resolvers/pubspec.yaml +++ b/build_resolvers/pubspec.yaml @@ -1,5 +1,5 @@ name: build_resolvers -version: 0.2.2+5 +version: 0.2.2+6 description: Resolve Dart code in a Builder author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/build_resolvers diff --git a/build_test/CHANGELOG.md b/build_test/CHANGELOG.md index f826adc40..f50ec1e46 100644 --- a/build_test/CHANGELOG.md +++ b/build_test/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.10.3+3 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + ## 0.10.3+2 - Declare support for `package:build` version 1.0.0. diff --git a/build_test/pubspec.yaml b/build_test/pubspec.yaml index 6aa25f7ae..ed4f62651 100644 --- a/build_test/pubspec.yaml +++ b/build_test/pubspec.yaml @@ -1,6 +1,6 @@ name: build_test description: Utilities for writing unit tests of Builders. -version: 0.10.3+2 +version: 0.10.3+3 author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/build_test diff --git a/build_vm_compilers/CHANGELOG.md b/build_vm_compilers/CHANGELOG.md index ccdc0bcf9..b724dc876 100644 --- a/build_vm_compilers/CHANGELOG.md +++ b/build_vm_compilers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.1+3 + +- Increased the upper bound for `package:analyzer` to '<0.34.0'. + ## 0.1.1+2 Support `package:build_modules` version `1.x.x`. diff --git a/build_vm_compilers/pubspec.yaml b/build_vm_compilers/pubspec.yaml index 6c9e8fba5..9562957ed 100644 --- a/build_vm_compilers/pubspec.yaml +++ b/build_vm_compilers/pubspec.yaml @@ -1,5 +1,5 @@ name: build_vm_compilers -version: 0.1.1+2 +version: 0.1.1+3 description: Builder implementations wrapping Dart VM compilers. author: Dart Team homepage: https://github.com/dart-lang/build/tree/master/build_vm_compilers