From d05fd351910f5d6c1ccdb76d8d8496e3410515af Mon Sep 17 00:00:00 2001 From: hoatle Date: Sat, 25 Aug 2018 16:56:45 +0700 Subject: [PATCH] @ #5 | should release v0.1.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 30 ++++++++++++++++++++++++++++++ docs/release.md | 16 ++++++++++++++++ manifest.yaml | 4 ++-- 4 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 docs/release.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6aa676b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Change Log + + +## [v0.1.0][] (2018-08-25) + + +Initial release version which supports all vagrant settings and environment variables settings + + +Details: https://github.com/teracyhq-incubator/teracy-dev-core/milestone/1?closed=1 + + +[v0.1.0]: https://github.com/teracyhq-incubator/teracy-dev-core/milestone/1?closed=1 diff --git a/README.md b/README.md index 04542cb..cf8076d 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,40 @@ To override the built-in config, create `workspace/teracy-dev-entry/config_defau following similar content: +- Use specific version: + +```yaml +teracy-dev: + extensions: + - _id: "0" + location: + git: https://github.com/teracyhq-incubator/teracy-dev-core.git + branch: v0.1.0 + require_version: ">= 0.1.0, < 0.2.0" +``` + +- Use latest stable version (auto update): + +```yaml +teracy-dev: + extensions: + - _id: "0" + location: + git: https://github.com/teracyhq-incubator/teracy-dev-core.git + branch: master + require_version: ">= 0.1.0, < 0.2.0" +``` + +- Use latest develop version (auto update): + ```yaml teracy-dev: extensions: - _id: "0" location: git: https://github.com/teracyhq-incubator/teracy-dev-core.git + branch: develop + require_version: ">= 0.2.0-SNAPSHOT" ``` @@ -36,4 +64,6 @@ teracy-dev: lookup: workspace location: git: git@github.com:hoatle/teracy-dev-core.git # your forked repo + branch: develop + require_version: ">= 0.2.0-SNAPSHOT" ``` diff --git a/docs/release.md b/docs/release.md new file mode 100644 index 0000000..61318b6 --- /dev/null +++ b/docs/release.md @@ -0,0 +1,16 @@ +# Release Process + +Follow: http://dev.teracy.org/docs/release_process.html + +## Update manifest.yaml + +- Update the release `version` + +- Update the `target` version requirements for teracy-dev + +## Update CHANGELOG.md + + +## Update README.md + +Update the right git branch and version for extension configuration diff --git a/manifest.yaml b/manifest.yaml index 649332b..e04c883 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,4 +1,4 @@ name: teracy-dev-core -version: "0.1.0-a1-SNAPSHOT" +version: "0.1.0" description: teracy-dev core extension -target: ">= 0.6.0-a1-SNAPSHOT" +target: ">= 0.6.0-a1, < 0.7.0"