Skip to content

Commit 9347161

Browse files
authored
Prepare for 0.2 release (#158)
1 parent 0111294 commit 9347161

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ atlassian-ide-plugin.xml
2626
*.so
2727
*.dylib
2828
/bin
29+
/populator
30+
/ocftool
2931

3032
# Test binary, built with `go test -c`
3133
*.test
@@ -90,3 +92,4 @@ nosetests.xml
9092
/hack/ci/terraform/terraform.tfstate.backup
9193
/hack/ci/terraform/.terraform.tfstate.lock.info
9294
/hack/ci/terraform/.terraform.lock.hcl
95+

cmd/ocftool/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
const (
1010
appName = "ocftool"
11-
version = "0.0.1"
11+
version = "0.2.0"
1212
)
1313

1414
func NewRoot() *cobra.Command {

docs/tutorial/jira-installation/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,11 +450,11 @@ The following section extends the tutorial with additional topics, to let you di
450450

451451
A user consumes content stored in Open Capability Hub (OCH). The content is defined using Open Capability Format (OCF) manifests. The OCF specification defines the shape of manifests that Voltron understands, such as Interface or Implementation.
452452

453-
To see all the manifest that OCH stores, navigate to the [OCH content structure](https://github.com/Project-Voltron/go-voltron/tree/master/och-content).
453+
To see all the manifest that OCH stores, navigate to the [OCH content structure](../../../och-content).
454454

455455
To see the Jira installation manifests, click on the following links:
456-
- [Jira installation Interface](https://github.com/Project-Voltron/go-voltron/tree/master/och-content/interface/productivity/jira/install.yaml) - a generic description of Jira installation (action name, input, and output - a concept similar to interfaces in programming languages),
457-
- [Jira installation Implementation](https://github.com/Project-Voltron/go-voltron/tree/master/och-content/implementation/atlassian/jira/install.yaml) - represents the dynamic workflow for Jira Installation.
456+
- [Jira installation Interface](../../../och-content/interface/productivity/jira/install.yaml) - a generic description of Jira installation (action name, input, and output - a concept similar to interfaces in programming languages),
457+
- [Jira installation Implementation](../../../och-content/implementation/atlassian/jira/install.yaml) - represents the dynamic workflow for Jira Installation.
458458

459459
#### Content development
460460

@@ -479,5 +479,5 @@ Here are some useful links:
479479

480480
- [Tutorial which shows the first steps on how to develop OCF content for Voltron.](../content-creation/README.md)
481481
- The [OCF Draft v0.0.1](https://docs.google.com/document/d/1ud7xL3bXxEXtVPE8daA_DHYacKHMkn_jx6s7eaVT-NA/edit?usp=drive_web&ouid=115672498843496061020) document.
482-
- [Documentation](https://github.com/Project-Voltron/go-voltron/tree/master/docs), which contains various investigations, enhancement proposals, tutorials, Voltron architecture and development guideline.
482+
- [Documentation](../../../docs), which contains various investigations, enhancement proposals, tutorials, Voltron architecture and development guideline.
483483
- Google Drive folder with the [initial draft concepts](https://drive.google.com/drive/u/1/folders/1SBpIR0QUn9Rp68w6N3G-hqXdi1HfZQsn).

docs/tutorial/voltron-installation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ This tutorial shows how to set up a private Google Kubernetes Engine (GKE) clust
3232

3333
### Create GKE private cluster
3434

35-
1. Clone the `master` branch from the `go-voltron` repository.
35+
1. Clone the `release-0.2` branch from the `go-voltron` repository.
3636

3737
```bash
38-
git clone --depth 1 --branch master https://github.com/Project-Voltron/go-voltron.git
38+
git clone --depth 1 --branch release-0.2 https://github.com/Project-Voltron/go-voltron.git
3939
cd ./go-voltron
4040
```
4141

0 commit comments

Comments
 (0)