Skip to content

Commit 98e0bbc

Browse files
committed
Update sec
1 parent e490280 commit 98e0bbc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![GoDoc](https://godoc.org/github.com/pepa65/becrypt?status.svg)](https://godoc.org/github.com/pepa65/becrypt)
66
[![GitHub](https://img.shields.io/github/license/pepa65/becrypt.svg)](LICENSE)
77
[![run-ci](https://github.com/pepa65/becrypt/actions/workflows/ci.yml/badge.svg)](https://github.com/pepa65/becrypt/actions/workflows/ci.yml)
8-
* Version: 1.3.16
8+
* Version: 1.3.17
99
* License: [MIT](LICENSE)
1010
* Repo: `github.com/pepa65/becrypt`
1111
* Modified interface from `github.com/shoenig/bcrypt-tool`:
@@ -15,7 +15,7 @@
1515

1616
## Usage
1717
```
18-
becrypt v1.3.16 - Generate and check bcrypt hashes from a CLI
18+
becrypt v1.3.17 - Generate and check bcrypt hashes from a CLI
1919
Repo: github.com/pepa65/becrypt
2020
Usage: becrypt OPTION
2121
Options:

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
golang.org/x/crypto v0.12.0
7-
golang.org/x/term v0.11.0
7+
golang.org/x/term v0.12.0
88
)
99

10-
require golang.org/x/sys v0.11.0 // indirect
10+
require golang.org/x/sys v0.12.0 // indirect

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
22
golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
3-
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
4-
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5-
golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
6-
golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
3+
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
4+
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5+
golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU=
6+
golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
const (
17-
version = "1.3.16"
17+
version = "1.3.17"
1818
pwMaxLen = 72
1919
)
2020

0 commit comments

Comments
 (0)