Skip to content

Commit c67fd12

Browse files
authored
Merge pull request #2 from anyappinc/release/v2
Upgrade to v2
2 parents 350bba9 + 2d94d4e commit c67fd12

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
regression
1+
regression v2
22
=======
33
[![License][license-image]][license-url]
44

@@ -13,7 +13,7 @@ Multivariable Linear Regression in Go (golang)
1313
installation
1414
------------
1515

16-
$ go get github.com/anyappinc/regression
16+
$ go get github.com/anyappinc/regression/v2
1717

1818
example usage
1919
-------------
@@ -26,7 +26,7 @@ package main
2626
import (
2727
"fmt"
2828

29-
"github.com/anyappinc/regression"
29+
"github.com/anyappinc/regression/v2"
3030
)
3131

3232
func main() {

go.mod renamed to v2/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/anyappinc/regression
1+
module github.com/anyappinc/regression/v2
22

33
go 1.14
44

go.sum renamed to v2/go.sum

File renamed without changes.
File renamed without changes.

model.go renamed to v2/model.go

File renamed without changes.

regression.go renamed to v2/regression.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math"
66
"strconv"
77

8-
"github.com/anyappinc/regression/logger"
8+
"github.com/anyappinc/regression/v2/logger"
99
"gonum.org/v1/gonum/mat"
1010
"gonum.org/v1/gonum/stat"
1111
"gonum.org/v1/gonum/stat/distuv"

0 commit comments

Comments
 (0)