Bumping odo version before release (#4966)

* Bumping odo version before release

Signed-off-by: Mohammed Zeeshan Ahmed <mohammed.zee1000@gmail.com>

* Update Changelog.md

Co-authored-by: Dharmit Shah <shahdharmit@gmail.com>

* Changing back to next

Signed-off-by: Mohammed Zeeshan Ahmed <mohammed.zee1000@gmail.com>

* Adding more items to changelog

Signed-off-by: Mohammed Zeeshan Ahmed <mohammed.zee1000@gmail.com>

* Updating changelog

Signed-off-by: Mohammed Zeeshan Ahmed <mohammed.zee1000@gmail.com>

Co-authored-by: Dharmit Shah <shahdharmit@gmail.com>
This commit is contained in:
Mohammed Ahmed
2021-08-04 20:08:04 +05:30
committed by GitHub
parent 63073ebdb1
commit f12e036b5c
4 changed files with 19 additions and 8 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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)"

View File

@@ -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`}