diff --git a/dwds/CHANGELOG.md b/dwds/CHANGELOG.md index 8d55deb1a..f4ccbc349 100644 --- a/dwds/CHANGELOG.md +++ b/dwds/CHANGELOG.md @@ -1,13 +1,16 @@ -## 23.3.0-wip +## 23.4.0-wip -- Filter out internal type properties from the new DDC type system. - [#2348](https://github.com/dart-lang/webdev/pull/2348) - Migrate injected client code to `package:web`. - [#2306](https://github.com/dart-lang/webdev/pull/2306) +## 23.3.0 + +- Filter out internal type properties from the new DDC type system. - [#2348](https://github.com/dart-lang/webdev/pull/2348) +- Fix errors on displaying getters when debugging in VS Code. - [#2343](https://github.com/dart-lang/webdev/pull/2343) + ## 23.2.0 - Send untruncated `dart:developer` logs to debugging clients. - [#2333](https://github.com/dart-lang/webdev/pull/2333) - Enabling tests that run with the DDC module system and exposing `utilities/ddc_names.dart` - [#2295](https://github.com/dart-lang/webdev/pull/2295) -- Fix errors on displaying getters. - [#2343](https://github.com/dart-lang/webdev/pull/2343) ## 23.1.1 diff --git a/dwds/lib/src/version.dart b/dwds/lib/src/version.dart index 8d4925e10..cba056742 100644 --- a/dwds/lib/src/version.dart +++ b/dwds/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '23.3.0-wip'; +const packageVersion = '23.4.0-wip'; diff --git a/dwds/pubspec.yaml b/dwds/pubspec.yaml index 9d206e70b..dff2455c0 100644 --- a/dwds/pubspec.yaml +++ b/dwds/pubspec.yaml @@ -1,6 +1,6 @@ name: dwds # Every time this changes you need to run `dart run build_runner build`. -version: 23.3.0-wip +version: 23.4.0-wip description: >- A service that proxies between the Chrome debug protocol and the Dart VM service protocol.