cespare / reflex

Run a command when files change
MIT License
3.38k stars 136 forks source link

Reflex now requires Go version v1.13 or higher #85

Closed okybr closed 3 years ago

okybr commented 3 years ago

The lastest commit -- https://github.com/cespare/reflex/commit/13e5691dcde5f7c29c144d1cb8c34f453d78505d -- uses errors.Is (from the errors package) which was introduced with Go version v1.13. (You can compare the documentation of the different versions like https://pkg.go.dev/errors@go1.13.) But the README of this package still states that it only requires v1.11. Thus, there's a contradiction which can be resolved

As the service ran by my company does not yet use v1.13, we'd prefer you to choose the second way.

cespare commented 3 years ago

I'd rather keep using the new features. I updated the installation instructions in the README.

I've added binary downloads to the Releases page so you can install that way if you wish.