diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bfcd2c3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change log + +## v2.0.0 - 2019-07-14 + +- This project now uses [Go Modules](https://blog.golang.org/using-go-modules) + ([#14](https://github.com/editorconfig/editorconfig-core-go/pull/14)). +- The import path has been changed from `gopkg.in/editorconfig/editorconfig-core-go.v1` + to `github.com/editorconfig/editorconfig-core-go/v2`. diff --git a/cmd/editorconfig/main.go b/cmd/editorconfig/main.go index 00cc939..610f6a6 100644 --- a/cmd/editorconfig/main.go +++ b/cmd/editorconfig/main.go @@ -15,7 +15,7 @@ import ( const ( // Version indicates the current version number - Version = "2.0.0-alpha" + Version = "2.0.0" ) func main() {