**What type of PR is this?**
> Uncomment only one ` /kind` line, and delete the rest.
> For example, `> /kind bug` would simply become: `/kind bug`
/kind feature
**What does does this PR do / why we need it**:
Release 1.2.5 of odo
**Which issue(s) this PR fixes**:
N/A
**PR acceptance criteria**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
/kind feature
**What does does this PR do / why we need it**:
Release 1.2.4
**Which issue(s) this PR fixes**:
N/A
**PR acceptance criteria**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
> Uncomment only one ` /kind` line, and delete the rest.
> For example, `> /kind bug` would simply become: `/kind bug`
/kind feature
**What does does this PR do / why we need it**:
Release 1.2.3 of odo
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
> Uncomment only one ` /kind` line, and delete the rest.
> For example, `> /kind bug` would simply become: `/kind bug`
/kind feature
**What does does this PR do / why we need it**:
Releases 1.2.1 of odo
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
> Uncomment only one ` /kind` line, and delete the rest.
> For example, `> /kind bug` would simply become: `/kind bug`
/kind feature
**What does does this PR do / why we need it**:
Releases 1.2.1 of odo
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
> Uncomment only one ` /kind` line, and delete the rest.
> For example, `> /kind bug` would simply become: `/kind bug`
/kind feature
**What does does this PR do / why we need it**:
Releases 1.2.0 of odo!
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What type of PR is this?**
/kind feature
**What does does this PR do / why we need it**:
Releasing odo cli binary with version 1.1.3
**Which issue(s) this PR fixes**:
Fixes NA
**How to test changes / Special notes to the reviewer**:
**What type of PR is this?**
> Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespace from that line:
> /kind feature
**What does does this PR do / why we need it**:
Release of 1.1.1
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What kind of PR is this?**
<!--
DELETE the kind(s) which are not applicable before opening the PR.
-->
/kind feature
**What does does this PR do / why we need it**:
Releases 1.0.2 + updates the release script
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
**What kind of PR is this?**
<!--
DELETE the kind(s) which are not applicable before opening the PR.
-->
/kind feature
**What does does this PR do / why we need it**:
New version of odo (1.0.1)
**Which issue(s) this PR fixes**:
N/A
**How to test changes / Special notes to the reviewer**:
N/A
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
This PR:
- Moves versioning information to `pkg/version/version.go` so other
parts of odo is able to use the versioning information (namely
`pkg/component/labels/labels.go`.
- Updates documentation on the versioning move
- Adds `app.kubernetes.io/managed-by-version` label
- Adds `app.kubernetes.io/managed-by` label
See example below of the changes:
```yaml
apiVersion: apps.openshift.io/v1
kind: DeploymentConfig
metadata:
annotations:
app.kubernetes.io/component-source-type: local
app.openshift.io/vcs-uri: file://./
creationTimestamp: 2019-10-10T21:15:55Z
generation: 2
labels:
app: app
app.kubernetes.io/instance: foobar
app.kubernetes.io/managed-by: odo
app.kubernetes.io/managed-by-version: v1.0.0-beta6
app.kubernetes.io/name: nodejs
app.kubernetes.io/part-of: app
app.openshift.io/runtime-version: latest
name: foobar-app
namespace: foo
resourceVersion: "526665225"
selfLink: /apis/apps.openshift.io/v1/namespaces/foo/deploymentconfigs/foobar-app
uid: 25e6bf2c-eba3-11e9-98ab-123dee44c1c5
```
Closes https://github.com/openshift/odo/issues/2017