Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Aug 11, 2022
1 parent 04b5c76 commit 6425f86
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

Notable changes.

## August 2022

### [0.10.0]

- Implement optional default values in localEnv/containerEnv expansions. (https://github.com/devcontainers/cli/issues/50)
- Log version and install location at the end of `--help`. (https://github.com/devcontainers/cli/issues/114)
- WIP on features v2:
- Update `direct-tarball` to follow spec. (https://github.com/devcontainers/cli/pull/105)
- Add `features package` command. (https://github.com/devcontainers/cli/pull/93)
- Fix cwd for building with local features. (https://github.com/devcontainers/cli/issues/116)

### [0.9.0]

- WIP on features v2:
- Contributable features in OCI registries.

## July 2022

### [0.8.0]

- Build command: Support multiple --image-name parameters (#61)
- WIP on features v2:
- Contributable features.
- `features test` command.

## June 2022

### [0.7.0]
Expand Down
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@ The specification repo uses the following [labels](https://github.com/microsoft/

[Milestones](https://github.com/microsoft/dev-container-spec/milestones) use a "month year" pattern (i.e. January 2022). If a finalized proposal is added to a milestone, it is intended to be merged during that milestone.

## Release CLI package

- Create a PR:
- Updating the package version in the `package.json`.
- Updating the `vscode-dev-containers` version in the `package.json`'s dependencies (if there is an update).
- Run `yarn` to update `yarn.lock`.
- List notable changes in the `CHANGELOG.md`.
- After the PR is merged to `main` wait for the CI workflow to succeed (this builds the artifact that will be published). (TBD: Let the `publish-dev-containers` workflow wait for the CI workflow.)
- Push a new tag, e.g., v0.10.0:
- `git tag v0.10.0`
- `git push origin v0.10.0`
- Pushing of a tag will trigger the `publish-dev-containers` workflow which will publish the new version to npm: https://www.npmjs.com/package/@devcontainers/cli

## Miscellaneous

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@devcontainers/cli",
"description": "Dev Containers CLI",
"version": "0.9.1",
"version": "0.10.0",
"bin": {
"devcontainer": "devcontainer.js"
},
Expand Down Expand Up @@ -76,7 +76,7 @@
"shell-quote": "^1.7.3",
"stream-to-pull-stream": "^1.7.3",
"tar": "^6.1.11",
"vscode-dev-containers": "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.241.1/vscode-dev-containers-0.241.1.tgz",
"vscode-dev-containers": "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.245.0/vscode-dev-containers-0.245.0.tgz",
"vscode-uri": "^3.0.3",
"yargs": "~17.0.1"
}
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3058,9 +3058,9 @@ vinyl@^2.0.0, vinyl@^2.2.1:
remove-trailing-separator "^1.0.1"
replace-ext "^1.0.0"

"vscode-dev-containers@https://github.com/microsoft/vscode-dev-containers/releases/download/v0.241.1/vscode-dev-containers-0.241.1.tgz":
version "0.241.1"
resolved "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.241.1/vscode-dev-containers-0.241.1.tgz#40fc17ebfd9de4a98b306336f9a03fdbe552a7bb"
"vscode-dev-containers@https://github.com/microsoft/vscode-dev-containers/releases/download/v0.245.0/vscode-dev-containers-0.245.0.tgz":
version "0.245.0"
resolved "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.245.0/vscode-dev-containers-0.245.0.tgz#878d0d130089d5151a93e2477ad97fcf057c1917"

vscode-uri@^3.0.3:
version "3.0.3"
Expand Down

0 comments on commit 6425f86

Please sign in to comment.