You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,35 @@ Introducing breaking changes under a feature flag can be ok in some cases where
47
47
48
48
## Unreleased (master)
49
49
50
+
## 2.0.0beta6
51
+
52
+
### Added
53
+
54
+
* Add management of env variable `GOROOT` that can be disabled with env var `GOENV_DISABLE_GOROOT=1`,
55
+
when calling `goenv-sh-rehash` (`goenv rehash` when `eval $(goenv init -)` was previously executed).
56
+
It does not attempt to manage when version is `system`.
57
+
; Ref: https://github.com/syndbg/goenv/pull/70
58
+
* Add management of env variable `GOPATH` that can be disabled with env var `GOENV_DISABLE_GOPATH=1`,
59
+
when calling `goenv-sh-rehash` (`goenv rehash` when `eval $(goenv init -)` was previously executed).
60
+
It does not attempt to manage when version is `system`.
61
+
; Ref: https://github.com/syndbg/goenv/pull/70
62
+
* Add configurable managed `GOPATH` prefix for `goenv-sh-rehash`
63
+
(`goenv rehash` when `eval $(goenv init -)` was previously executed).
64
+
Configured via `GOENV_GOPATH_PREFIX=<your prefix>`.
65
+
E.g `GOENV_GOPATH_PREFIX=/tmp`.
66
+
; Ref: https://github.com/syndbg/goenv/pull/70
67
+
* Add `--only-manage-paths` option to `goenv-sh-rehash` (`goenv rehash` when `eval $(goenv init -)` was previously executed) to skip calling `goenv-rehash` and update shims.
68
+
Instead it only updates managed `GOPATH` and `GOROOT` env variables.
69
+
It does not attempt to manage when version is `system`.
70
+
; Ref: https://github.com/syndbg/goenv/pull/70
71
+
72
+
### Changed
73
+
74
+
* Changed `goenv`'s bootstrap (`eval $(goenv init -)`) now to call `goenv-sh-rehash --only-manage-paths`.
75
+
This means that it'll export and manage `GOROOT` and `GOPATH` env vars.
76
+
It does not attempt to manage when version is `system`.
0 commit comments