Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Releases: joefitzgerald/go-plus

v4.1.0

24 Mar 21:17
Compare
Choose a tag to compare

Many apologies for the issues present in go-plus 4.0.0. It was clearly a mistake to depend on gotype exclusively for syntax checking. Thanks for bearing with us as we worked through it.

New

  • Install builder-go (source) to restore old behavior for building source and reporting syntax / build issues
  • builder-go now runs go install instead of go-plus 3.5.4's go build - this ensures gocode suggestions are always kept up to date

Changed

  • gometalinter-linter now no longer has gotype enabled by default; you can still enable it via your configuration; it will work now that go install is being run on save; but it is mostly duplicative to the output from builder-go

Notes

  • We found and patched two gometalinter issues; you should manually update gometalinter by running go get -u github.com/alecthomas/gometalinter to make sure you're working with the latest and greatest

v4.0.1

24 Mar 21:09
Compare
Choose a tag to compare
  • Fix Spec
  • Update Badges For Slack

v4.0.0

17 Mar 21:12
Compare
Choose a tag to compare

go-plus v4.0.0 is an evolution of the package. Prior versions were monolithic, including a large amount of code and functionality in a single package. This new version splits the functionality out into single-purpose packages:

  • go-config: Detects your go installation(s) and configures your environment, while laying the foundation for future gb and glide integration
  • go-get: If you are missing a tool, this package will offer to run go get to fetch it
  • autocomplete-go: An autocomplete-plus provider that uses gocode to provide suggestions
  • gofmt: Format your go source code using gofmt, goimports, or goreturns
  • gometalinter-linter: Run a variety of linters (e.g. lint, vet, gotype, etc.) against your code
  • navigator-godef: Go to definition using godef
  • tester-go: Display test coverage using go test -coverprofile
  • 🆕 gorename: Rename the symbol under your cursor using gorename (thanks @zmb3!)

This should make it easier for you to reason over the code related to each piece of go-plus functionality (admittedly at the cost of figuring out "which package do I need to work with?"). It will also allow others to build upon the foundation that exists in go-config and go-get.

New

  • Added gorename support
  • Removed specific vet and lint linting functionality and replaced it with gometalinter, which gives you many more options for linting
    • gometalinter-linter integrates with linter to display warnings and errors

Improved

  • All packages are now written in JavaScript (ES6) instead of CoffeeScript (hopefully this makes contribution easier)
  • If you are missing tools, go-get will now prompt you to install them, rather than automatically doing so
  • (OS X) You used to have to launch atom from the terminal to have it function correctly (due to a quirk in the way OS X and launchd work) - we have patched atom to allow it to work correctly even when you launch it from Finder, Dock, or Spotlight but this requires Atom >= 1.7.0 (1.6.x is in the stable channel now, 1.7.x is in the beta channel); the environment package will be installed to perform this patching for you until 1.7.0 is the stable release
  • You can now individually run gofmt, goimports, or goreturns against files (so for example, you may choose to run gofmt on save by default and then periodically (manually) invoke the command to run goimports)

Deprecated

  • "Display Go Information" is now gone - it may make a comeback in the future, we'll see
  • The old go-plus message panel is gone - you should not expect to see a pop-up that displays information about your environment

v3.5.0

24 Aug 20:05
Compare
Choose a tag to compare

v3.3.12

23 Jun 06:21
Compare
Choose a tag to compare
  • 🆕 Adds Go To Definition Support via ⌘-⌥-G (thanks @crispinb!) (#137)

v3.0.13

05 Jan 22:47
Compare
Choose a tag to compare
  • Increase required atom version to 0.165.0 in package.json

v3.0.12

05 Jan 22:49
Compare
Choose a tag to compare
  • 💄 Switch to git+https for atom-message-panel git dependency in package.json (fixes #113, #120)

v3.0.11

05 Jan 22:51
Compare
Choose a tag to compare
  • No changes from v3.0.10

v3.0.10

05 Jan 22:52
Compare
Choose a tag to compare
  • 💄 Fix deprecations associated with atom 1.0 API changes

v3.0.9

05 Jan 22:46
Compare
Choose a tag to compare
  • 🐛 Fix potential race condition