diff --git a/README.md b/README.md index 291e9c0..5a11bcb 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ like this: ### Options - **`version`:** A version of the Dart SDK like `3.0.7`. Must be a complete - version identifier. The default is `3.0.7`. + version identifier or `latest`. The default is `latest`. [this vs code blog post]: https://code.visualstudio.com/blogs/2022/09/15/dev-container-features diff --git a/devcontainer-feature.json b/devcontainer-feature.json index a37d11a..eadaae1 100644 --- a/devcontainer-feature.json +++ b/devcontainer-feature.json @@ -21,8 +21,8 @@ "version": { "type": "string", "description": "Dart SDK version", - "proposals": ["3.0.7"], - "default": "3.0.7" + "proposals": ["latest", "3.0.7"], + "default": "latest" } } }