Files
kustomize/releasing/VERSIONS
Rhomel Chinsio 76e72ada16 increment api patch release to 0.3.3
Context: https://github.com/kubernetes-sigs/kustomize/pull/2249#issuecomment-595436980

Increased the patch version. But perhaps the minor version should increase instead since this is technically not a bug? Let me know if patch increment is sufficient in this case.
2020-03-06 09:56:34 +09:00

44 lines
892 B
Bash

#!/usr/bin/env bash
# VERSIONS contains the release versions of each kustomize go module
# update this file and run releasemodule.sh to cut a new release
# kyaml version
export kyaml_major=0
export kyaml_minor=1
export kyaml_patch=0
# kstatus version
export kstatus_major=0
export kstatus_minor=0
export kstatus_patch=1
# kustomize api version
export api_major=0
export api_minor=3
export api_patch=3
# cmd/config version
export cmd_config_major=0
export cmd_config_minor=1
export cmd_config_patch=0
# cmd/kubectl version
export cmd_kubectl_major=0
export cmd_kubectl_minor=0
export cmd_kubectl_patch=3
# cmd/resource version
export cmd_resource_major=0
export cmd_resource_minor=0
export cmd_resource_patch=2
# kustomize version
export kustomize_major=3
export kustomize_minor=5
export kustomize_patch=4
export pluginator_major=2
export pluginator_minor=1
export pluginator_patch=0