packages feed

autodocodec-nix 0.0.1.0 → 0.0.1.1

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.0.1.1] - 2024-08-20++### Changed++* Fixed the nix type that corresponds to `Word`.+ ## [0.0.1.0] - 2024-07-31  ### Changed
autodocodec-nix.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           autodocodec-nix-version:        0.0.1.0+version:        0.0.1.1 synopsis:       Autodocodec interpreters for nix homepage:       https://github.com/NorfairKing/autodocodec#readme bug-reports:    https://github.com/NorfairKing/autodocodec/issues
src/Autodocodec/Nix.hs view
@@ -74,7 +74,7 @@         OptionTypeSimple $           case guessIntegerBoundsSymbolic bounds of             BitUInt w -> case w of-              64 -> "lib.types.numbers.unsigned"+              64 -> "lib.types.ints.unsigned"               32 -> "lib.types.ints.u32"               16 -> "lib.types.ints.u16"               8 -> "lib.types.ints.u8"