Skip to content

Commit

Permalink
Require dart 3.4, prepare for release v1.12.0 (#162)
Browse files Browse the repository at this point in the history
Doing a minor release since features were added
  • Loading branch information
kevmoo authored Sep 27, 2024
1 parent 5b82965 commit 9476c0a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
matrix:
# Add macos-latest and/or windows-latest if relevant for this package.
os: [ubuntu-latest]
sdk: [3.1, dev]
sdk: [3.4, dev]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 1.11.2-wip
## 1.12.0

* Require Dart 3.1 or greater
* Added support for parsing Wasm frames of Chrome (V8), Firefox, Safari.
* Require Dart 3.4 or greater

## 1.11.1

Expand Down
2 changes: 1 addition & 1 deletion lib/src/stack_zone_specification.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class StackZoneSpecification {
try {
// TODO(rnystrom): Is the null-assertion correct here? It is nullable in
// Zone. Should we check for that here?
self.parent!.runBinary(_onError!, error, stackChain);
self.parent!.runBinary(_onError, error, stackChain);
} on Object catch (newError, newStackTrace) {
if (identical(newError, error)) {
parent.handleUncaughtError(zone, error, stackChain);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: stack_trace
version: 1.11.2-wip
version: 1.12.0
description: A package for manipulating stack traces and printing them readably.
repository: https://github.com/dart-lang/stack_trace

environment:
sdk: ^3.1.0
sdk: ^3.4.0

dependencies:
path: ^1.8.0
Expand Down

0 comments on commit 9476c0a

Please sign in to comment.