Skip to content

Commit

Permalink
Release 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed Sep 23, 2024
1 parent 14fe3bd commit f47352a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

* Latest Hackage released version: 3.10, 2024-03-01

### Version 3.13, 2024-09-23

* Fix help text

### Version 3.12, 2024-04-05

* Fix hexadecimal float parsing for e4m3
Expand Down
2 changes: 1 addition & 1 deletion crackNum.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-version : 2.2
Name : crackNum
Version : 3.12
Version : 3.13
Synopsis : Crack various integer and floating-point data formats
Description : Crack IEEE-754 float formats and arbitrary sized words and integers, showing the layout.
.
Expand Down
2 changes: 1 addition & 1 deletion src/CrackNum/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ usage pn = putStr $ unlines [ helpStr pn
, " " ++ pn ++ " -f3+4 0b0111001 -- decode as float with 3 bits exponent, 4 bits significand"
, " " ++ pn ++ " -fbp 0x000F -- decode as a brain-precision float"
, " " ++ pn ++ " -fdp 0x8000000000000000 -- decode as a double-precision float"
, " " ++ pn ++ " -fhp 0x8000000000000000 -- decode as a double-precision float"
, " " ++ pn ++ " -fhp 0x8000 -- decode as a half-precision float"
, " " ++ pn ++ " -l4 -fhp 64\\'hbdffaaffdc71fc60 -- decode as half-precision float over 4 lanes using verilog notation"
, ""
, " Notes:"
Expand Down

0 comments on commit f47352a

Please sign in to comment.