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

Update specified version for 3.6.2 release #6377

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion examples/analysis/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
examples_util: {path: ../util}
2 changes: 1 addition & 1 deletion examples/analysis_alt/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1
2 changes: 1 addition & 1 deletion examples/async_await/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
examples_util: {path: ../util}
Expand Down
2 changes: 1 addition & 1 deletion examples/build_runner_usage/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev build_runner example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dev_dependencies:
args: ^2.5.0
Expand Down
2 changes: 1 addition & 1 deletion examples/cli/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Examples for CLI tutorials on dart.dev

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
args: ^2.5.0
Expand Down
2 changes: 1 addition & 1 deletion examples/concurrency/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
http: any
Expand Down
2 changes: 1 addition & 1 deletion examples/create_libraries/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dev_dependencies:
test: ^1.25.8
2 changes: 1 addition & 1 deletion examples/extension_methods/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dev_dependencies:
test: ^1.25.8
2 changes: 1 addition & 1 deletion examples/fetch_data/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
http: ^1.2.2
2 changes: 1 addition & 1 deletion examples/futures/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
examples_util: {path: ../util}
Expand Down
2 changes: 1 addition & 1 deletion examples/html/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dev_dependencies:
test: ^1.25.8
Expand Down
2 changes: 1 addition & 1 deletion examples/iterables/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dev_dependencies:
examples_util: {path: ../util}
Expand Down
2 changes: 1 addition & 1 deletion examples/language/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
examples_util: { path: ../util }
Expand Down
2 changes: 1 addition & 1 deletion examples/misc/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev example code.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
args: ^2.5.0
Expand Down
2 changes: 1 addition & 1 deletion examples/non_promotion/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
mockito: ^5.4.4
2 changes: 1 addition & 1 deletion examples/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

workspace:
- analysis
Expand Down
3 changes: 1 addition & 2 deletions examples/type_system/lib/common_fixes_analysis.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ abstract class C implements List<int> {}
// #enddocregion compatible-generics

// #docregion conflicting-generics
// ignore: inconsistent_inheritance, conflicting_generic_interfaces,
// ignore: duplicate_definition
// ignore: duplicate_definition, inconsistent_inheritance, conflicting_generic_interfaces
abstract class C implements List<int>, Iterable<num> {}
// #enddocregion conflicting-generics
2 changes: 1 addition & 1 deletion examples/type_system/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: dart.dev type system examples.

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
examples_util: {path: ../util}
Expand Down
2 changes: 1 addition & 1 deletion examples/util/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.2

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
test: ^1.25.8
2 changes: 1 addition & 1 deletion examples/vector_victor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 1.0.0

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

# dependencies:
# path: ^1.8.0
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ publish_to: none
homepage: https://dart.dev

environment:
sdk: ^3.6.0
sdk: ^3.6.1

workspace:
- tool/dart_site
Expand Down
2 changes: 1 addition & 1 deletion src/_data/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ show_banner: false
# in the `firebase.json` redirect rule.)
og_image_vers: "?2"

sdkVersion: 3.6.0
sdkVersion: 3.6.2
2 changes: 1 addition & 1 deletion src/content/tutorials/server/cmdline.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ $ dart run bin/dcat.dart -n pubspec.yaml
4 # repository: https://github.com/my_org/my_repo
5
6 environment:
7 sdk: ^3.6.0
7 sdk: ^3.6.1
8
9 # Add regular dependencies here.
10 dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tool/dart_site/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
args: ^2.5.0
Expand Down
2 changes: 1 addition & 1 deletion tool/get-dart/archive/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
dart_sdk_archive:
Expand Down
2 changes: 1 addition & 1 deletion tool/get-dart/dart_sdk_archive/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
http: ^1.2.2
Expand Down
2 changes: 1 addition & 1 deletion tool/get-dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

workspace:
- archive
Expand Down
2 changes: 1 addition & 1 deletion tool/get-dart/sdk_builds/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none

resolution: workspace
environment:
sdk: ^3.6.0
sdk: ^3.6.1

dependencies:
googleapis: ^13.2.0
Expand Down