diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bfc518f..7dd37f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [UNRELEASED] - 0000-00-00 + +## [1.0.0-alpha.13] - 2018-04-21 ### Fixes - [CLI] Remove code and description from GRCP errors - [API] Skipping ephemeral pods while log streaming diff --git a/Makefile b/Makefile index 57bc31e4..c572d86b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -version=1.0.0-alpha.12 +version=1.0.0-alpha.13 MODEL_PROTO_DIR=./api/models SERVICE_PROTO_DIR=./api/controller VEDNOR_GOOGLE_APIS=./vendor/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis diff --git a/cmd/stdcli/cli.go b/cmd/stdcli/cli.go index 98399a17..39bf574c 100644 --- a/cmd/stdcli/cli.go +++ b/cmd/stdcli/cli.go @@ -26,7 +26,7 @@ var ( ) func init() { - Version = "1.0.0-alpha.12" + Version = "1.0.0-alpha.13" LocalAppDir = ".datacol" Binary = filepath.Base(os.Args[0]) Commands = []cli.Command{} diff --git a/hack/make.rb b/hack/make.rb index a36a067e..8aaa77f6 100644 --- a/hack/make.rb +++ b/hack/make.rb @@ -1,6 +1,6 @@ require 'rubygems' -$version = ENV.fetch('VERSION', "1.0.0-alpha.12") +$version = ENV.fetch('VERSION', "1.0.0-alpha.13") $env = ENV.fetch('DATACOL_ENV') # dev or prod $cgo = ENV.fetch("CGO_ENABLED", "0") diff --git a/mini.json b/mini.json deleted file mode 100644 index e79c6f09..00000000 --- a/mini.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "steps": [ - { - "name": "gcr.io/cloud-builders/go", - "env":[ - "GOOS=linux", - "GOARCH=amd64" - ], - "args": [ "build", "-o", "apictl", "-ldflags=\"-s -w\"", "./api"] - }, { - "name": "zip", - "args": ["apictl.zip", "apictl"] - }, { - "name": "gcr.io/cloud-builders/gsutil", - "args": ["cp", "apictl.zip", "datacol-dev/binaries/${_DATACOL_VERSION}/apictl.zip"] - }, { - "name": "gcr.io/cloud-builders/gsutil", - "args": ["acl", "ch", "-u", "allUsers:R", "gs://datacol-dev/binaries/${_DATACOL_VERSION}/apictl.zip"] - }] -}