Skip to content

Commit 3cbb2ca

Browse files
authored
Require dart 3.4, prepare for release v1.12.0 (dart-archive/stack_trace#162)
Doing a minor release since features were added
1 parent 63dbf2f commit 3cbb2ca

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pkgs/stack_trace/.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
matrix:
4848
# Add macos-latest and/or windows-latest if relevant for this package.
4949
os: [ubuntu-latest]
50-
sdk: [3.1, dev]
50+
sdk: [3.4, dev]
5151
steps:
5252
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5353
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672

pkgs/stack_trace/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
## 1.11.2-wip
1+
## 1.12.0
22

3-
* Require Dart 3.1 or greater
43
* Added support for parsing Wasm frames of Chrome (V8), Firefox, Safari.
4+
* Require Dart 3.4 or greater
55

66
## 1.11.1
77

pkgs/stack_trace/lib/src/stack_zone_specification.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class StackZoneSpecification {
158158
try {
159159
// TODO(rnystrom): Is the null-assertion correct here? It is nullable in
160160
// Zone. Should we check for that here?
161-
self.parent!.runBinary(_onError!, error, stackChain);
161+
self.parent!.runBinary(_onError, error, stackChain);
162162
} on Object catch (newError, newStackTrace) {
163163
if (identical(newError, error)) {
164164
parent.handleUncaughtError(zone, error, stackChain);

pkgs/stack_trace/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: stack_trace
2-
version: 1.11.2-wip
2+
version: 1.12.0
33
description: A package for manipulating stack traces and printing them readably.
44
repository: https://github.com/dart-lang/stack_trace
55

66
environment:
7-
sdk: ^3.1.0
7+
sdk: ^3.4.0
88

99
dependencies:
1010
path: ^1.8.0

0 commit comments

Comments
 (0)