Skip to content

Commit 3d7d41c

Browse files
v0.5.2
1 parent 8db2635 commit 3d7d41c

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v0.5.2; 2026-03-23
2+
- Fixed ([#5](https://github.com/cyclone-github/pcfg-go/issues/5)) -n {nth} not outputing
3+
14
### v0.5.1; 2026-03-17
25
### Session Save/Restore
36
- Save on SIGINT/SIGTERM

cmd/pcfg_guesser/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
URL: https://github.com/cyclone-github/
55
Repo: https://github.com/cyclone-github/pcfg-go/
66
Credits: https://github.com/lakiw/pcfg_cracker/
7-
Version: 0.5.1 (Go)
7+
Version: 0.5.2 (Go)
88
*/
99

1010
package main
@@ -22,7 +22,7 @@ import (
2222
"github.com/cyclone-github/pcfg-go/guesser/omen"
2323
)
2424

25-
const version = "0.5.1 (Go)"
25+
const version = "0.5.2 (Go)"
2626

2727
func main() {
2828
runtime.GOMAXPROCS(runtime.NumCPU())
@@ -52,7 +52,7 @@ func main() {
5252
os.Exit(0)
5353
}
5454
if *versionFlag {
55-
fmt.Fprintln(os.Stderr, "PCFG Guesser v0.5.1 (Go)")
55+
fmt.Fprintln(os.Stderr, "PCFG Guesser v0.5.2 (Go)")
5656
fmt.Fprintln(os.Stderr, "https://github.com/cyclone-github/pcfg-go/")
5757
os.Exit(0)
5858
}

cmd/trainer/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
URL: https://github.com/cyclone-github/
55
Repo: https://github.com/cyclone-github/pcfg-go/
66
Credits: https://github.com/lakiw/pcfg_cracker/
7-
Version: 0.5.1 (Go)
7+
Version: 0.5.2 (Go)
88
*/
99

1010
package main
@@ -99,7 +99,7 @@ func main() {
9999

100100
info := &trainer.ProgramInfo{
101101
Name: "PCFG Trainer",
102-
Version: "0.5.1 (Go)",
102+
Version: "0.5.2 (Go)",
103103
Author: "cyclone",
104104
Contact: "https://github.com/cyclone-github/",
105105
RuleName: "Default",
@@ -135,7 +135,7 @@ func main() {
135135
os.Exit(0)
136136
}
137137
if *versionFlag {
138-
fmt.Fprintln(os.Stderr, "PCFG Trainer v0.5.1 (Go)")
138+
fmt.Fprintln(os.Stderr, "PCFG Trainer v0.5.2 (Go)")
139139
fmt.Fprintln(os.Stderr, "https://github.com/cyclone-github/pcfg-go/")
140140
os.Exit(0)
141141
}

0 commit comments

Comments
 (0)