[ga-bump-release] Update Dolt version to 0.50.7 and release v0.50.7

This commit is contained in:
druvv
2022-10-21 01:04:45 +00:00
parent 739f090ba4
commit 2ea93ca3a8
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.3-labs
FROM --platform=linux/amd64 ubuntu:22.04
ARG DOLT_VERSION=0.50.6
ARG DOLT_VERSION=0.50.7
ADD https://github.com/dolthub/dolt/releases/download/v${DOLT_VERSION}/dolt-linux-amd64.tar.gz dolt-linux-amd64.tar.gz
RUN tar zxvf dolt-linux-amd64.tar.gz && \

View File

@@ -2,7 +2,7 @@
FROM --platform=linux/arm64 ubuntu:22.04
COPY docker/qemu-aarch64-static /usr/bin/
ARG DOLT_VERSION=0.50.6
ARG DOLT_VERSION=0.50.7
ADD https://github.com/dolthub/dolt/releases/download/v${DOLT_VERSION}/dolt-linux-arm64.tar.gz dolt-linux-arm64.tar.gz
RUN tar zxvf dolt-linux-arm64.tar.gz && \

View File

@@ -57,7 +57,7 @@ import (
)
const (
Version = "0.50.6"
Version = "0.50.7"
)
var dumpDocsCommand = &commands.DumpDocsCmd{}