Skip to content

Release v.2.4.0

Compare
Choose a tag to compare
@go-jet go-jet released this 28 Jun 10:30
· 365 commits to master since this release
fdde2ab

Go modules support
For new download procedure take a look at Installation.
Go mod requires for projects with major version 2 or higher, to include major version at the end of the module paths. This means for go.mod projects, depending of go-jet, will have to update there import paths. This can be achieved with the following command:

find . -type f \
    -name '*.go' \
    -exec sed -i -e 's,github.com/go-jet/jet,github.com/go-jet/jet/v2,g' {} \;

For GOPATH projects import path remains the same.