Skip to content

Commit a3dae29

Browse files
committed
Change version to 4.0.0-rc.1
1 parent 6d8c682 commit a3dae29

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

build-cli.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ $version = $(python -c 'from convoy import __version__; print(__version__)')
22
$executableName = "batch-shipyard-${version}-cli-win-amd64.exe"
33

44
$gitHash= $(git show --format='%h' --no-patch)
5-
$majorVersion, $minorVersion, $patchNumber = $version.split('.')
5+
$versionCore = $version.split('-')[0]
6+
$majorVersion, $minorVersion, $patchNumber = $versionCore.split('.')
67
$buildNumber = 1
78
$versionTuple = [string]::Format("({0}, {1}, {2}, {3})", $majorVersion, $minorVersion, $patchNumber, $buildNumber)
89
$branchGitSha1 = "${version}@${gitHash}"

convoy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '4.0.0'
25+
__version__ = '4.0.0-rc.1'

0 commit comments

Comments
 (0)