v0.1.1
A patch release containing fixes for some of the edge cases found in #3.
Fixed
-
Skip updating binaries built from source.
Binaries built from source (either using
go build main.go
orgo install
in the cloned repository) likely have been modified prior to being built. Updating them would likely throw away these changes and end up being annoying for engineers who want to keep their modified versions.Moreover, packages built using
go build main.go
havecommand-line-arguments
set as theirpath
ingo version -m binary-name
. This makes it impossible to update automatically. -
Filesystem path handling on Windows.
Use correct separator for filesystem paths on Windows. This allows using this tool on Windows.