aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2019-03-30 03:33:21 +0700
committerShulhan <ms@kilabit.info>2019-03-30 03:33:31 +0700
commita210339a4b7ed540b9c0ae6dc24cc4e5aefad7ed (patch)
treecd9220abb7905d94eb90955b00e22188111d9d06
parent791001467be9de3442e2f3177a61ae3437c0d231 (diff)
downloadbeku-0.6.0.tar.xz
Release v0.6.0v0.6.0
## New Features - Make Go command works with Go v1.12 and later. This means turning off GO111MODULE when running Go command. - Install package if missing when issuing SyncAll ## Enhancement - Use copy of "golang.org/x/tools/go/vcs". The indirect dependencies of package "golang.org/x/tools/go/vcs" is overwhelming. Using "go get" on this package alone will pull up all dependency of "golang.org/x/tools". To minimize unneeded download of unneeded packages we copy the package vcs to our own repository including their license file.
-rw-r--r--CHANGELOG.md39
-rw-r--r--cmd/beku/main.go4
2 files changed, 41 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6eccb2..9b921d8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,42 @@
+# Beku v0.6.0 (2019-03-30)
+
+## New Features
+
+- Make Go command works with Go v1.12 and later.
+ This means turning off GO111MODULE when running Go command.
+
+- Install package if missing when issuing SyncAll
+
+## Enhancement
+
+- Use copy of "golang.org/x/tools/go/vcs".
+
+ The indirect dependencies of package "golang.org/x/tools/go/vcs" is
+ overwhelming. Using "go get" on this package alone will pull up all
+ dependency of "golang.org/x/tools".
+
+ To minimize unneeded download of unneeded packages we copy the package
+ vcs to our own repository including their license file.
+
+
+# Beku v0.5.2 (2018-12-14)
+
+## Enhancement
+
+- No need to reinstall all packages after freezing
+
+## Bug Fix
+
+- git: set package remote URL according to value in database
+
+
+# Beku v0.5.1 (2018-11-02)
+
+## Bug Fix
+
+- Fix sync all that cause version set to true
+
+
# Beku v0.5.0 (2018-11-01)
## Enhancements
diff --git a/cmd/beku/main.go b/cmd/beku/main.go
index c99dea5..f170e37 100644
--- a/cmd/beku/main.go
+++ b/cmd/beku/main.go
@@ -19,8 +19,8 @@ import (
const (
verMajor = 0
- verMinor = 5
- verPatch = 2
+ verMinor = 6
+ verPatch = 0
verMetadata = ""
)