diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a09a2b..f560d69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [v0.2.0][] (2018-12-07) + +- Improvements: + + vagrant hostmanager should remove duplicate hostnames/aliases in /etc/hosts of the host machine #24 + + should update to name \_id with best practices #26 + +- Bug Fixes: + + wrong auto network interface selection when vmware and virtualbox are installed on Windows #27 + + +Details: https://github.com/teracyhq-incubator/teracy-dev-essential/milestone/2?closed=1 + ## [v0.1.0][] (2018-09-21) @@ -15,3 +27,4 @@ Details: https://github.com/teracyhq-incubator/teracy-dev-essential/milestone/1? [v0.1.0]: https://github.com/teracyhq-incubator/teracy-dev-essential/milestone/1?closed=1 +[v0.2.0]: https://github.com/teracyhq-incubator/teracy-dev-essential/milestone/2?closed=1 diff --git a/README.md b/README.md index b90e235..2142dc7 100644 --- a/README.md +++ b/README.md @@ -13,24 +13,24 @@ Configure `workspace/teracy-dev-entry/config_default.yaml` with the following si ```yaml teracy-dev: extensions: - - _id: "entry-0" + - _id: "entry-essential" path: extension: teracy-dev-essential location: git: remote: origin: https://github.com/teracyhq-incubator/teracy-dev-essential.git - branch: v0.1.0 - require_version: ">= 0.1.0" + branch: v0.2.0 + require_version: ">= 0.2.0" enabled: true ``` -- Use latest stable version (auto update): +- Use the latest stable version (auto update): ```yaml teracy-dev: extensions: - - _id: "entry-0" + - _id: "entry-essential" path: extension: teracy-dev-essential location: @@ -38,16 +38,16 @@ teracy-dev: remote: origin: https://github.com/teracyhq-incubator/teracy-dev-essential.git branch: master - require_version: ">= 0.1.0" + require_version: ">= 0.2.0" enabled: true ``` -- Use latest develop version (auto update): +- Use the latest develop version (auto update): ```yaml teracy-dev: extensions: - - _id: "entry-0" + - _id: "entry-essential" path: extension: teracy-dev-essential location: @@ -55,7 +55,7 @@ teracy-dev: remote: origin: https://github.com/teracyhq-incubator/teracy-dev-essential.git branch: develop - require_version: ">= 0.1.0" + require_version: ">= 0.2.0" enabled: true ``` @@ -69,7 +69,7 @@ similar content into `workspace/teracy-dev-entry/config_override.yaml`: ```yaml teracy-dev: extensions: - - _id: "entry-0" # must match the _id configured from the config_default.yaml file + - _id: "entry-essential" # must match the _id configured from the config_default.yaml file path: lookup: workspace # use workspace directory to lookup for this extension location: @@ -77,5 +77,5 @@ teracy-dev: remote: origin: git@github.com:hoatle/teracy-dev-essential.git # your forked repo branch: develop - require_version: ">= 0.2.0-SNAPSHOT" + require_version: ">= 0.3.0-SNAPSHOT" ``` diff --git a/manifest.yaml b/manifest.yaml index b1d2e6f..2a65888 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,4 +1,4 @@ name: teracy-dev-essential -version: "0.2.0-SNAPSHOT" +version: "0.2.0" description: teracy-dev extension essential for dev -target: ">= 0.6.0-a4, < 0.7.0" +target: ">= 0.6.0-a5, < 0.7.0"