Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ghc-hashable-doc | Distribution: openSUSE:Factory:zSystems |
Version: 1.5.0.0 | Vendor: openSUSE |
Release: 2.1 | Build date: Thu Dec 19 11:57:25 2024 |
Group: Unspecified | Build host: reproducible |
Size: 1033009 | Source RPM: ghc-hashable-1.5.0.0-2.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://hackage.haskell.org/package/hashable | |
Summary: Haskell hashable library documentation |
This package provides the Haskell hashable library documentation.
BSD-3-Clause
* Thu Dec 19 2024 Peter Simons <psimons@suse.com> - Update hashable to version 1.5.0.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Thu Jul 04 2024 Peter Simons <psimons@suse.com> - Update hashable to version 1.5.0.0. [#]# Version 1.5.0.0 * Add `QuantifiedConstraints` superclasses to `Hashable1/2`: ```haskell class (Eq1 t, forall a. Hashable a => Hashable (t a)) => Hashable1 t where class (Eq2 t, forall a. Hashable a => Hashable1 (t a)) => Hashable2 t where ``` * Change contexts of `Compose`, `Product` and `Sum` instances. This and above is the similar change as [CLC proposal #10](https://github.com/haskell/core-libraries-committee/issues/10) * The above changes require `base-4.18.0.0`, so we drop support for GHC prior GHC-9.6.5 (The `hashable-1.4` branch will be maintained for time being for older GHC users). * Make `Arg a b` instance behave as `Hashable a` instance. * Mon Jun 24 2024 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.7.0. [#]# Version 1.4.7.0 * Make `arch-native` disabled by default. * Tue Jun 11 2024 Andreas Schwab <schwab@suse.de> - Disable use of invalid -march flag. * Sun Jun 09 2024 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.6.0. [#]# Version 1.4.6.0 * Use GND&DerivingVia to derive `newtype` intances (`Data.Semigroup`, `Data.Monoid`, `Identity` etc). [#]# Version 1.4.5.0 * Drop support for GHCs prior 8.6.5 * Use xxhash for hashing bytestrings and bytearrays. Note: when compiling binaries for distribution, you may need to disable `arch-native` flag. * Wed Apr 03 2024 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.4.0 revision 1. [#]# Version 1.4.4.0 * Depend on `os-string-2` for GHC-9.2+ * Support `filepath-1.5` * Tue Oct 03 2023 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.3.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Sat Jul 29 2023 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.3.0. [#]# Version 1.4.3.0 * Export `defaultHashWithSalt` and `defaultHash`. * Fix issue of tuples with 0 first component causing all-zero state. * Change `hashInt` to mix bits more. * Thu Mar 30 2023 Peter Simons <psimons@suse.com> - Updated spec file to conform with ghc-rpm-macros-2.5.2. * Sun Mar 12 2023 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.2.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Thu Jan 05 2023 Peter Simons <psimons@suse.com> - Update hashable to version 1.4.2.0. [#]# Version 1.4.2.0 * Fix the foreign signature of `getThreadId` https://github.com/haskell-unordered-containers/hashable/pull/263 * Drop support for GHCs prior GHC-8.2 The recent `unordered-containers` releases support only GHC-8.2+ * Add instance for `OsString`, `PosixString`, `WindowsString` from `filepath-1.4.100.1` * Add `Hashable ByteArray` instance using `data-array-byte` compat package [#]# Version 1.4.1.0 * Add instance for `Data.Array.Byte.ByteArray`. [#]# Version 1.4.0.2 * Restore older GHC support * Support GHC-9.0.2 [#]# Version 1.4.0.1 * `text-2.0` compatibility [#]# Version 1.4.0.0 * `Eq` is now a superclass of `Hashable`. Also `Eq1` is a superclass of `Hashable1` and `Eq2` is a superclass of `Hashable2` when exists. * Remove `Hashable1 Fixed` instance * Remove `Hashable1 Semi.Min/Max/...` instances as they don't have `Eq1` instance. * Thu Jan 06 2022 Peter Simons <psimons@suse.com> - Update hashable to version 1.3.5.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Thu Nov 04 2021 psimons@suse.com - Update hashable to version 1.3.5.0. [#]# Version 1.3.5.0 * Add `Solo` instance (base-4.15+, GHC-9+) * Thu Oct 07 2021 psimons@suse.com - Update hashable to version 1.3.4.1. [#]# Version 1.3.4.1 * Fix compilation on 32 bit platforms * Fix `Tree` instance [#]# Version 1.3.4.0 * `Text` and `ByteString` hashes include length. This fixes a variant of https://github.com/haskell-unordered-containers/hashable/issues/74 for texts and bytestrings. https://github.com/haskell-unordered-containers/hashable/pull/223 * Use correct prime in `combine`. This should improve the hash quality of compound structures on 64bit systems. https://github.com/haskell-unordered-containers/hashable/pull/224 * Add instance for types in `containers` package https://github.com/haskell-unordered-containers/hashable/pull/226 * Change `Int`, `Int64` and `Word64` `hashWithSalt` slightly. https://github.com/haskell-unordered-containers/hashable/pull/227 * Wed Aug 25 2021 psimons@suse.com - Update hashable to version 1.3.3.0. [#]# Version 1.3.3.0 * `Text` hashing uses 64-bit FNV prime * Don't truncate Text hashvalues on 64bit Windows: https://github.com/haskell-unordered-containers/hashable/pull/211 * Thu May 20 2021 psimons@suse.com - Update hashable to version 1.3.2.0. [#]# Version 1.3.2.0 * Add `Hashable (Fixed a)` for `base <4.7` versions. * Add documentation: - `hashable` is not a stable hash - `hashWithSalt` may return negative values - there is `time-compat` with `Hashable` instances for `time` types. * Add `random-initial-seed` flag causing the initial seed to be randomized on each start of an executable using `hashable`. * Mon Apr 26 2021 Ondřej Súkup <mimi.vx@gmail.com> - remve obsollete fix for i586 * Sat Feb 20 2021 psimons@suse.com - Update hashable to version 1.3.1.0. [#]# Version 1.3.1.0 * Add `Hashable1` instances to `semigroups` types. * Use `ghc-bignum` with GHC-9.0 * Use FNV-1 constants. * Make `hashable-examples` a test-suite
/usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0 /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/Data-Hashable-Generic.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/Data-Hashable-Lifted.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/Data-Hashable.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/doc-index.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/haddock-bundle.min.js /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/hashable.haddock /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/hashable.txt /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/index.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/linuwial.css /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/meta.json /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/quick-jump.css /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Class.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.FFI.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Generic.Instances.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Generic.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Imports.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Lifted.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.LowLevel.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.Mix.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.XXH3.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/Data.Hashable.html /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/highlight.js /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/src/style.css /usr/share/doc/packages/ghc-9.10.1/html/libraries/hashable-1.5.0.0/synopsis.png /usr/share/licenses/ghc-hashable-doc /usr/share/licenses/ghc-hashable-doc/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Jan 8 00:14:20 2025