secp256k1-haskell 1.4.4 → 1.4.5
raw patch · 3 files changed
+13/−10 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +12/−0
- secp256k1-haskell.cabal +1/−2
- src/Crypto/Secp256k1.hs +0/−8
CHANGELOG.md view
@@ -4,6 +4,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.4.5] - 2025-05-09++### Removed++- Removed unnecessary file boilerplate.++## [1.4.4] - 2025-05-09++### Changed++- Simplify author name.+ ## [1.4.3] - 2025-05-08 ### Changed
secp256k1-haskell.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: secp256k1-haskell-version: 1.4.4+version: 1.4.5 synopsis: Bindings for secp256k1 description: Sign and verify signatures using the secp256k1 library. category: Crypto@@ -13,7 +13,6 @@ bug-reports: https://github.com/jprupp/secp256k1-haskell/issues author: JP Rupp maintainer: jprupp@protonmail.ch-copyright: (c) 2017 JP Rupp license: MIT license-file: LICENSE build-type: Simple
src/Crypto/Secp256k1.hs view
@@ -1,12 +1,4 @@ {-# LANGUAGE DuplicateRecordFields #-}--- |--- Module : Crypto.Secp256k1--- License : UNLICENSE--- Maintainer : Jean-Pierre Rupp <jprupp@protonmail.ch>--- Stability : experimental--- Portability : POSIX------ Crytpographic functions from Bitcoin’s secp256k1 library. module Crypto.Secp256k1 ( -- * Context Ctx (..),