Skip to content

Commit 87b790b

Browse files
jakemac53Commit Queue
authored andcommitted
Bump version to 3.6
Change-Id: I1d096140adb8c01914e0b9d1c7cb2017204e7f0a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/373940 Reviewed-by: Devon Carew <[email protected]> Commit-Queue: Kevin Chisholm <[email protected]> Reviewed-by: Kevin Chisholm <[email protected]>
1 parent 2f9539c commit 87b790b

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 3.6.0
2+
13
## 3.5.0
24

35
### Language

pkg/_fe_analyzer_shared/lib/src/experiments/flags.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Instead modify 'tools/experimental_features.yaml' and run
88
// 'dart pkg/front_end/tool/fasta.dart generate-experimental-flags' to update.
9-
const Version defaultLanguageVersion = const Version(3, 5);
9+
const Version defaultLanguageVersion = const Version(3, 6);
1010

1111
/// Enum for experimental flags shared between the CFE and the analyzer.
1212
enum ExperimentalFlag {

pkg/analyzer/lib/src/dart/analysis/experiments.g.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ part of 'experiments.dart';
1212

1313
/// The current version of the Dart language (or, for non-stable releases, the
1414
/// version of the language currently in the process of being developed).
15-
const _currentVersion = '3.5.0';
15+
const _currentVersion = '3.6.0';
1616

1717
/// A map containing information about all known experimental flags.
1818
final _knownFeatures = <String, ExperimentalFeature>{

pkg/kernel/lib/default_language_version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
import "ast.dart";
1111

12-
const Version defaultLanguageVersion = const Version(3, 5);
12+
const Version defaultLanguageVersion = const Version(3, 6);

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#
2626
CHANNEL main
2727
MAJOR 3
28-
MINOR 5
28+
MINOR 6
2929
PATCH 0
3030
PRERELEASE 0
3131
PRERELEASE_PATCH 0

tools/experimental_features.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
# default 'language' "category" with code generated for both CFE and Analyzer,
110110
# while other categories can be tailored more specifically.
111111

112-
current-version: '3.5.0'
112+
current-version: '3.6.0'
113113

114114
features:
115115
variance:

0 commit comments

Comments
 (0)