Skip to content

Commit

Permalink
Bumping odo version before release (#4966)
Browse files Browse the repository at this point in the history
* Bumping odo version before release

Signed-off-by: Mohammed Zeeshan Ahmed <[email protected]>

* Update Changelog.md

Co-authored-by: Dharmit Shah <[email protected]>

* Changing back to next

Signed-off-by: Mohammed Zeeshan Ahmed <[email protected]>

* Adding more items to changelog

Signed-off-by: Mohammed Zeeshan Ahmed <[email protected]>

* Updating changelog

Signed-off-by: Mohammed Zeeshan Ahmed <[email protected]>

Co-authored-by: Dharmit Shah <[email protected]>
  • Loading branch information
mohammedzee1000 and dharmit authored Aug 4, 2021
1 parent 63073eb commit f12e036
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
21 changes: 16 additions & 5 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,40 @@

### Feature/Enhancements

- Support for `preStart` lifecycle events ([#4901](https://github.com/openshift/odo/issues/4901))

### Bug Fixes

- `odo push` now displays "Waiting for component to start" only once ([4919](https://github.com/openshift/odo/pull/4919))

### Tests

- runs nightly test of main branch of odo against [SBO master branch](https://github.com/redhat-developer/service-binding-operator) ([4942](https://github.com/openshift/odo/issues/4942))

### Documentation

## 2.2.x
## 2.2.4

### Feature/Enhancements

- Support for `preStart` lifecycle events ([#4901](https://github.com/openshift/odo/issues/4901))
- Do not cancel the whole execution if one of the test suite fails ([#4943](https://github.com/openshift/odo/issues/4943))
- Allow linking using ServiceBinding without ServiceBindingOperator ([#4543](https://github.com/openshift/odo/issues/4543)).
- Add Sonar Cloud config file: sonar-project.properties([#4900](https://github.com/openshift/odo/pull/4900))

### Bug Fixes

- Fix component create and delete help examples([#4904](https://github.com/openshift/odo/pull/4904))
- `odo push` now displays "Waiting for component to start" only once ([4919](https://github.com/openshift/odo/pull/4919))
- Modifies the error message to list the available starters ([#4935](https://github.com/openshift/odo/pull/4935))
- Add language and projectType metadata in devfile for s2i components([#4911](https://github.com/openshift/odo/pull/4911))

### Tests

- Test storage + link ([#4954](https://github.com/openshift/odo/pull/4954))

### Documentation

- Add Getting Started > Basics documentation ([#4914](https://github.com/openshift/odo/pull/4914))
- Add documentation for global configuration ([#4921](https://github.com/openshift/odo/pull/4921))
- Add odo installation docs ([#4923](https://github.com/openshift/odo/pull/4923))

## 2.2.3

### Feature/Enhancements
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ LABEL com.redhat.component=atomic-openshift-odo-cli-artifacts-container \
summary="This image contains the Linux, Mac and Windows version of odo"

# Change version as needed. Note no "-" is allowed
LABEL version=2.2.3
LABEL version=2.2.4

COPY --from=builder /go/src/github.com/openshift/odo/dist/bin/darwin-amd64/odo /usr/share/openshift/odo/mac/odo
COPY --from=builder /go/src/github.com/openshift/odo/dist/bin/windows-amd64/odo.exe /usr/share/openshift/odo/windows/odo.exe
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Changing these values will change the versioning information when releasing odo.

var (
// VERSION is version number that will be displayed when running ./odo version
VERSION = "v2.2.3"
VERSION = "v2.2.4"

// GITCOMMIT is hash of the commit that will be displayed when running ./odo version
// this will be overwritten when running build like this: go build -ldflags="-X github.com/openshift/odo/cmd.GITCOMMIT=$(GITCOMMIT)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/rpm-prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set +ex
echo "Reading ODO_VERSION, ODO_RELEASE and GIT_COMMIT env, if they are set"
# Change version as needed. In most cases ODO_RELEASE would not be touched unless
# we want to do a re-lease of same version as we are not backporting
export ODO_VERSION=${ODO_VERSION:=2.2.3}
export ODO_VERSION=${ODO_VERSION:=2.2.4}
export ODO_RELEASE=${ODO_RELEASE:=1}

export GIT_COMMIT=${GIT_COMMIT:=`git rev-parse --short HEAD 2>/dev/null`}
Expand Down

0 comments on commit f12e036

Please sign in to comment.