Releases: openebs/linux-utils
Releases · openebs/linux-utils
v1.12.0-RC1
feat(build): Adding ppc64le build for linux-utils Signed-off-by: Peeyush Gupta <[email protected]>
v1.11.0
feat(build): Adding ppc64le build for linux-utils Signed-off-by: Peeyush Gupta <[email protected]>
v1.11.0-RC2
feat(build): Adding ppc64le build for linux-utils Signed-off-by: Peeyush Gupta <[email protected]>
v1.11.0-RC1
feat(build): Adding ppc64le build for linux-utils Signed-off-by: Peeyush Gupta <[email protected]>
v1.10.0
fix(build): git-release check if already tagged The build fails if a tagged build is restarted on travis as the previous run would have already tagged the dependent repos. This commit adds a check to see if the error response to tag is about already_exists and returns a success code. Signed-off-by: kmova <[email protected]>
v1.10.0-RC2
fix(build): git-release check if already tagged The build fails if a tagged build is restarted on travis as the previous run would have already tagged the dependent repos. This commit adds a check to see if the error response to tag is about already_exists and returns a success code. Signed-off-by: kmova <[email protected]>
v1.10.0-RC1
refactor(build): trim leading v from image tag Using the github tag, docker image tags are created. As we move the github tags to semver format, the image tags will end up having a leading `v` in the tag. To keep the image tag names consistent with past releases, the leading `v` will be trimmed from the travis tag and the rest of the string will be used for image tag. Examples: 1.10.0 maps to 1.10.0 v1.10.0 maps to 1.10.0 v1.10.0-custom-RC1 maps to 1.10.0-custom-RC1 Signed-off-by: kmova <[email protected]>