diff --git a/CHANGELOG.md b/CHANGELOG.md index 9496dfe776..5a0ea34606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ -## 0.0.28 - XX May 2018 +## 0.1.0 - 26 July 2018 * Update .NET Core Dockerfile generation [#264](https://github.com/Microsoft/vscode-docker/issues/264). Per the .NET team, don't generate `docker-compose` files for .NET Core +* Update to version 0.0.18 of the language server (thanks @rcjsuen) [#291](https://github.com/Microsoft/vscode-docker/pull/291). This includes fixes for: + * command 'vscode-docker.configure' not found [#271](https://github.com/Microsoft/vscode-docker/issues/271) + * Dockerfile linting error in FROM [#269](https://github.com/Microsoft/vscode-docker/issues/269), #280, #288, and others + * Other linting fixes +* Update Linux post-install link in README.md (thanks @gregvanl) [#275](https://github.com/Microsoft/vscode-docker/pull/275) +* Add docker.host setting as alternative for setting DOCKER_HOST environment variable (thanks @tfenster) [#304](https://github.com/Microsoft/vscode-docker/pull/304) +* Basic Dockerfile for Ruby (thanks @MiguelSavignano) [#276](https://github.com/Microsoft/vscode-docker/pull/276) +* Azure container registries bugfixes and enhancements (thanks @estebanreyl, @julialieberman) [#299](https://github.com/Microsoft/vscode-docker/pull/299) + * Fixes [#266](https://github.com/Microsoft/vscode-docker/issues/266) to fix error when expanding empty container registry + * Improves Azure explorer expansion speed by parallelizing network calls + * Alphabetically organized registries listed from azure and organized tags by date of creation +* Add "Docker: Compose Restart" command [#316](https://github.com/Microsoft/vscode-docker/pull/316) +* Add link to extension docs and Azure publish tutorial to readme +* Fix [#295](https://github.com/Microsoft/vscode-docker/issues/295) to provide proper error handling if project file can't be found adding Dockerfile to project +* Fix [#302](https://github.com/Microsoft/vscode-docker/issues/302) so that Compose Up/Down work correctly from the text editor context menu +* Clarify README documentation on DOCKER_HOST to note that DOCKER_CER_PATH may be required for TLS (thanks @mikepatrick) [#324](https://github.com/Microsoft/vscode-docker/pull/324) +* Engineering improvements (tests and lint fixes) ## 0.0.27 - 19 May 2018 @@ -138,4 +155,4 @@ ## 0.0.11 - 4 January 2017 -* Fixed [Issue 51](https://github.com/microsoft/vscode-docker/issues/51), a path problem on Windows. \ No newline at end of file +* Fixed [Issue 51](https://github.com/microsoft/vscode-docker/issues/51), a path problem on Windows. diff --git a/README.md b/README.md index 1177dce648..6bfacd308a 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ By default, Docker runs as the root user, requiring other users to access it wit The default connection of the extension is to connect to the local docker daemon. You can connect to a docker-machine instance if you launch Visual Studio Code and have the DOCKER_HOST environment variable set to a valid host or if you set the `docker.host` configuration setting. -If the docker daemon is using TLS, the DOCKER_CERT_PATH environment variable must also be set (e.g. `$HOME\.docker\machine\machines\default`). +If the docker daemon is using TLS, the DOCKER_CERT_PATH environment variable must also be set (e.g. `$HOME\.docker\machine\machines\default`). See [docker documentation](https://docs.docker.com/machine/reference/env/) for more information. ## Contributing diff --git a/package.json b/package.json index f8252a6c1c..f082c19c28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-docker", - "version": "0.1.0-alpha", + "version": "0.1.0", "publisher": "PeterJausovec", "displayName": "Docker", "description": "Adds syntax highlighting, commands, hover tips, and linting for Dockerfile and docker-compose files.",