Skip to content

Commit a0de703

Browse files
v1.2.0
1 parent 185f7aa commit a0de703

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### v1.2.0-dev; 2025-09-20.2300
1+
### v1.2.0; 2025-11-08
22
```
33
addressed raw base-16 issue https://github.com/cyclone-github/hashgen/issues/8
44
added feature: "keep-order" from https://github.com/cyclone-github/hashgen/issues/7

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ require (
99
golang.org/x/crypto v0.43.0
1010
)
1111

12-
require golang.org/x/sys v0.37.0 // indirect
12+
require golang.org/x/sys v0.38.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ github.com/openwall/yescrypt-go v1.0.0 h1:jsGk48zkFvtUjGVOhYPGh+CS595JmTRcKnpggK
66
github.com/openwall/yescrypt-go v1.0.0/go.mod h1:e6CWtFizUEOUttaOjeVMiv1lJaJie3mfOtLJ9CCD6sA=
77
golang.org/x/crypto v0.43.0 h1:dduJYIi3A3KOfdGOHX8AVZ/jGiyPa3IbBozJ5kNuE04=
88
golang.org/x/crypto v0.43.0/go.mod h1:BFbav4mRNlXJL4wNeejLpWxB7wMbc79PdRGhWKncxR0=
9-
golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ=
10-
golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
9+
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=
10+
golang.org/x/sys v0.38.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=

hashgen.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ full changelog
5252
https://github.com/cyclone-github/hashgen/blob/main/CHANGELOG.md
5353
5454
latest changelog
55-
v1.2.0-dev; 2025-09-20.2300
55+
v1.2.0; 2025-11-08
5656
addressed raw base-16 issue https://github.com/cyclone-github/hashgen/issues/8
5757
added feature: "keep-order" from https://github.com/cyclone-github/hashgen/issues/7
5858
added dynamic lines/sec from https://github.com/cyclone-github/hashgen/issues/11
@@ -68,7 +68,7 @@ v1.2.0-dev; 2025-09-20.2300
6868
*/
6969

7070
func versionFunc() {
71-
fmt.Fprintln(os.Stderr, "hashgen v1.2.0-dev; 2025-09-20.2300\nhttps://github.com/cyclone-github/hashgen")
71+
fmt.Fprintln(os.Stderr, "hashgen v1.2.0; 2025-11-08\nhttps://github.com/cyclone-github/hashgen")
7272
}
7373

7474
// help function

0 commit comments

Comments
 (0)