Skip to content

v1.2.2

Choose a tag to compare

@cyclone-github cyclone-github released this 23 Jan 17:55
· 13 commits to main since this release
9af1f1b

What's Changed

  • add mode: halfmd5 -m 5100 by @cyclone-github in #20
  • added mode: morsedecode 9ef6c99
  • chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.44.0 in the minor-and-patch group by @dependabot[bot] in #17
  • chore(deps): bump golang.org/x/crypto from 0.44.0 to 0.45.0 by @dependabot[bot] in #18
  • chore(deps): bump golang.org/x/crypto from 0.46.0 to 0.47.0 in the minor-and-patch group by @dependabot[bot] in #19

Full Changelog: v1.2.0...v1.2.2

Install latest release:

go install github.com/cyclone-github/hashgen@latest

Install from latest source code (bleeding edge):

go install github.com/cyclone-github/hashgen@main

Compile from source:

  • This assumes you have Go and Git installed
    • git clone https://github.com/cyclone-github/hashgen.git # clone repo
    • cd hashgen # enter project directory
    • go mod init hashgen # initialize Go module (skips if go.mod exists)
    • go mod tidy # download dependencies
    • go build -ldflags="-s -w" . # compile binary in current directory
    • go install -ldflags="-s -w" . # compile binary and install to $GOPATH
  • Compile from source code how-to: