Skip to content

Commit 2e3aa6e

Browse files
committed
Update Go version to 1.18, fixes #593
1 parent bf2187d commit 2e3aa6e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Minifiers or bindings to minifiers exist in almost all programming languages. So
7979
This minifier proves to be that fast and extensive minifier that can handle HTML and any other filetype it may contain (CSS, JS, ...). It is usually orders of magnitude faster than existing minifiers.
8080

8181
## Installation
82-
Make sure you have [Git](https://git-scm.com/) and [Go](https://golang.org/dl/) (1.13 or higher) installed, run
82+
Make sure you have [Git](https://git-scm.com/) and [Go](https://golang.org/dl/) (1.18 or higher) installed, run
8383
```
8484
mkdir Project
8585
cd Project

go.mod

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
module github.com/tdewolff/minify/v2
22

3-
go 1.13
3+
go 1.18
44

55
require (
6-
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect
76
github.com/djherbis/atime v1.1.0
87
github.com/dustin/go-humanize v1.0.1
98
github.com/fsnotify/fsnotify v1.6.0
109
github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2
1110
github.com/spf13/pflag v1.0.5
1211
github.com/tdewolff/parse/v2 v2.6.6
1312
github.com/tdewolff/test v1.0.9
14-
golang.org/x/sys v0.6.0 // indirect
13+
)
14+
15+
require (
16+
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect
17+
golang.org/x/sys v0.10.0 // indirect
1518
)

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ github.com/tdewolff/test v1.0.9/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYq
1818
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1919
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
2020
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
21+
golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
22+
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 commit comments

Comments
 (0)