From 56dc2041f2c45ab15d41e63058c1c44fff905e81 Mon Sep 17 00:00:00 2001 From: Matthew Rothenberg Date: Fri, 24 May 2019 15:28:12 -0400 Subject: [PATCH] bump changelog for release --- CHANGELOG.md | 18 +++++++++++++++++- README.md | 5 +---- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f34fce..ce6aef4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log -This project tries to adhere to [Semantic Versioning](http://semver.org/). +This project tries to adhere to [Semantic Versioning](https://semver.org/). + +## 0.3.0 - 2019-05-24 +Small fixes and no real feature changes, but enough build tooling was +changed that this is being considered a minor release instead of patch. + +### Changed +- Build tooling updated to more modern Go toolchain, removing some legacy/deprecated tools so that this actually can be maintained in 2019. + - Switch from Godep to go modules (and removed vendored modules). + - Switch release build cross-compile tool from goxc to goreleaser. + - go-bindata updates. +- CLI library updated to recent version of Cobra. + +### Fixed +- Fix processing statuses with very complex changesets (#45) +- scmpuff expand should escape '*' (#44, thx @jdelStrother) +- scmpuff status works on naked zero commit repo (#37, thx @zommerfelds) ## 0.2.1 - 2017-02-17 ### Fixed diff --git a/README.md b/README.md index 75fae55..7e00b94 100644 --- a/README.md +++ b/README.md @@ -111,10 +111,7 @@ integration testing because of the excellent Cucumber/Aruba package for testing CLI tools. Thus, to bootstrap, you will need to have Ruby and bundler installed on your -system. Do `bundle install; rake bootstrap` to get the dev environment going. -We assume you are both cloned into and have your $GOPATH properly set. +system. Do `bundle install` to get the dev environment going. Since we already have Ruby then for tests, we use a Rakefile instead of Makefile since it offers some niceties. Do `rake -T` to see available tasks. - -`GO_VERSION >= 1.7` is required to build.