From 58583e25c496fc5ef97e8863f5071a64bb526b8b Mon Sep 17 00:00:00 2001 From: dinesh Date: Fri, 2 Mar 2018 19:26:30 +0530 Subject: [PATCH] bump version to alpha.11 --- CHANGELOG.md | 15 +++++++++++++++ cmd/stdcli/cli.go | 2 +- hack/make.rb | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..28e1e919 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Change Log +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.11] - 2018-03-02 +### Added +- Supported --build-args while building containers from Dockerfile +- Procfile to manage multiple processes in an app +- Process Management API +- Supporting nginx-ingress controller on AWS based stack +- Supporting interactive command (`datacol run rails c`) +- Support for Local cloud provider based on minikube +- Domains for an App diff --git a/cmd/stdcli/cli.go b/cmd/stdcli/cli.go index 2d1fa397..f213a756 100644 --- a/cmd/stdcli/cli.go +++ b/cmd/stdcli/cli.go @@ -25,7 +25,7 @@ var ( ) func init() { - Version = "1.0.0-alpha.10" + Version = "1.0.0-alpha.11" LocalAppDir = ".dtcol" Binary = filepath.Base(os.Args[0]) Commands = []cli.Command{} diff --git a/hack/make.rb b/hack/make.rb index 9a7d95fa..bf88cef4 100644 --- a/hack/make.rb +++ b/hack/make.rb @@ -1,6 +1,6 @@ require 'rubygems' -$version = ENV.fetch('VERSION', "1.0.0-alpha.10") +$version = ENV.fetch('VERSION', "1.0.0-alpha.11") $env = ENV.fetch('DATACOL_ENV') # dev or prod $bin_matrix =