-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
@ #5 | should release v0.1.0
- Loading branch information
Showing
4 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: [email protected]:hoatle/teracy-dev-core.git # your forked repo | ||
branch: develop | ||
require_version: ">= 0.2.0-SNAPSHOT" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |