-
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
@ #32 | should release v0.2.0
- Loading branch information
Showing
3 changed files
with
26 additions
and
13 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
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,49 +13,49 @@ 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: | ||
git: | ||
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: | ||
git: | ||
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,13 +69,13 @@ 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: | ||
git: | ||
remote: | ||
origin: [email protected]:hoatle/teracy-dev-essential.git # your forked repo | ||
branch: develop | ||
require_version: ">= 0.2.0-SNAPSHOT" | ||
require_version: ">= 0.3.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 |
---|---|---|
@@ -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" |