diff --git a/webdev/CHANGELOG.md b/webdev/CHANGELOG.md index 75703d046..d1627a4d6 100644 --- a/webdev/CHANGELOG.md +++ b/webdev/CHANGELOG.md @@ -1,32 +1,29 @@ -## 2.0.0-dev +## 2.0.0 -- The daemon command now logs build events through `daemon.log`. +## Breaking Changes -## 2.0.0-alpha.4 - -- Fix an NPE is the reload logic. -- Shutdown the daemon process when the corresponding application is closed. - -## 2.0.0-alpha.3 - -- Lots of small daemon mode bug fixes. -- Allow build_web_compilers 2.x. - -## 2.0.0-alpha.2 - -- Open up devtools with the full uri instead of just the port. This is required - for the latest proxy because it contains a unique token in the uri for each - instance of the service. - -## 2.0.0-alpha.1 - -- Hot restart will now invoke the `ext.flutter.disassemble` service extension if - it exists, and wait for that result to complete before reloading modules. - -## 2.0.0-alpha.0 - -- Support building with `package:build_daemon` through `serve` command. - The `serve` command will now only serve `web` by default. +- Deprecated the `--hot-reload` and `--live-reload` flags, in favor of the new + `--auto=` option which performs an action whenever a build completes. + - The current supported actions are `restart` and `refresh`, which correspond + to the old `--hot-reload` and `--live-reload` flags. +- Support building with `package:build_daemon`. This allows shared builds as + long as the build arguments are compatible. + - This should not affect most users but might break some workflows. + - Prompts are not supported, so you may have to pass the + `-- --delete-conflicting-outputs` argument if you used to hit `y` at the + prompt. + +### Features + +- Added the `--debug` flag. + - Runs a proxy dart vm service with limited functionality, which talks to the + running in chrome. + - Enables [devtools](https://github.com/flutter/devtools) for web apps. + - For regular web apps currently this doesn't actually do anything yet, + except for supported frameworks which will enable some tabs. + - Use `alt+d` (or `option+d` on Mac) in the web app to launch devtools. +- Allow build_web_compilers 2.x. ## 1.0.1 diff --git a/webdev/lib/src/version.dart b/webdev/lib/src/version.dart index 309700443..0e58df393 100644 --- a/webdev/lib/src/version.dart +++ b/webdev/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '2.0.0-dev'; +const packageVersion = '2.0.0'; diff --git a/webdev/pubspec.yaml b/webdev/pubspec.yaml index c006a109e..710af791c 100644 --- a/webdev/pubspec.yaml +++ b/webdev/pubspec.yaml @@ -1,5 +1,5 @@ name: webdev -version: 2.0.0-dev +version: 2.0.0 author: Dart Team homepage: https://github.com/dart-lang/webdev description: >-