osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-scientific revision:7, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-scientific?expand=0&rev=69
This commit is contained in:
parent
304aebfbfe
commit
79badb9558
@ -1,5 +1,191 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 28 17:31:04 UTC 2019 - psimons@suse.com
|
||||
Fri Nov 8 16:14:40 UTC 2019 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Add scientific at version 0.3.6.2.
|
||||
- Drop obsolete group attributes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 20 11:31:58 UTC 2018 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Use https URL to refer to bugs.opensuse.org.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 14:26:40 UTC 2018 - psimons@suse.com
|
||||
|
||||
- Cosmetic: replace tabs with blanks, strip trailing white space,
|
||||
and update copyright headers with spec-cleaner.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 14 17:02:11 UTC 2018 - psimons@suse.com
|
||||
|
||||
- Update scientific to version 0.3.6.2.
|
||||
* Due to a regression introduced in 0.3.4.14 the RealFrac methods
|
||||
and floatingOrInteger became vulnerable to a space blowup when
|
||||
applied to scientifics with huge exponents. This has now been
|
||||
fixed again.
|
||||
|
||||
* Fix build on GHC < 8.
|
||||
|
||||
* Make the methods of the Hashable, Eq and Ord instances safe to
|
||||
use when applied to scientific numbers coming from untrusted
|
||||
sources. Previously these methods first converted their arguments
|
||||
to Rational before applying the operation. This is unsafe because
|
||||
converting a Scientific to a Rational could fill up all space and
|
||||
crash your program when the Scientific has a huge base10Exponent.
|
||||
|
||||
Do note that the hash computation of the Hashable Scientific
|
||||
instance has been changed because of this improvement!
|
||||
|
||||
Thanks to Tom Sydney Kerckhove (@NorfairKing) for pushing me to
|
||||
fix this.
|
||||
|
||||
* fromRational :: Rational -> Scientific now throws an error
|
||||
instead of diverging when applied to a repeating decimal. This
|
||||
does mean it will consume space linear in the number of digits of
|
||||
the resulting scientific. This makes "fromRational" and the other
|
||||
Fractional methods "recip" and "/" a bit safer to use.
|
||||
|
||||
* To get the old unsafe but more efficient behaviour the following
|
||||
function was added: unsafeFromRational :: Rational -> Scientific.
|
||||
|
||||
* Add alternatives for fromRationalRepetend:
|
||||
|
||||
fromRationalRepetendLimited
|
||||
:: Int -- ^ limit
|
||||
-> Rational
|
||||
-> Either (Scientific, Rational)
|
||||
(Scientific, Maybe Int)
|
||||
|
||||
and:
|
||||
|
||||
fromRationalRepetendUnlimited
|
||||
:: Rational -> (Scientific, Maybe Int)
|
||||
|
||||
Thanks to Ian Jeffries (@seagreen) for the idea.
|
||||
|
||||
* Dropped upper version bounds of dependencies
|
||||
because it's to much work to maintain.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 11 03:02:20 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.5.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 3 03:01:36 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.15 revision 2.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 12 09:41:44 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.15.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 31 14:01:07 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.13.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 19 13:31:57 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.12 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 4 11:04:06 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.11 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 12 14:14:50 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.10 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 21:22:15 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.9 revision 1 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 22 06:03:20 UTC 2016 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.9 revision 0 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 10 16:58:33 UTC 2016 - psimons@suse.com
|
||||
|
||||
- Update to version 0.3.4.8 revision 0 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 3 12:33:17 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.8
|
||||
* Make bytestring-builder's installation conditional based on a Cabal flag.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 1 17:02:22 UTC 2016 - toddrme2178@gmail.com
|
||||
|
||||
- Make Group tag consistent with other GHC packages.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 12 12:00:17 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.7
|
||||
* Unconditionally export Data.ByteString.Builder.Scientific.
|
||||
* The bytestring-builder cabal flag has been removed.
|
||||
* Depend on bytestring-builder for backwards compatibility for GHC < 7.8.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 12 09:29:12 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.6
|
||||
* Made toDecimalDigits more similar to floatToDigits
|
||||
* Introduce a special case for 0 in fromFloatDigits
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 10 09:00:33 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.5
|
||||
* Support GHC-8.0.1
|
||||
* Support binary-0.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 29 17:39:11 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.4
|
||||
* Fix build with integer-simple.
|
||||
* Improved performance of toDecimalDigits by 13%.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 12 18:53:43 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.2
|
||||
* build fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 4 16:52:33 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.4.0
|
||||
* Added fromRationalRepetend & toRationalRepetend
|
||||
for safely converting from and to rationals
|
||||
which have a repeating decimal representation like:
|
||||
1 % 28 = 0.03(571428).
|
||||
* Added a Binary instance.
|
||||
* Various performance improvements.
|
||||
* Support vector-0.11
|
||||
* Support tasty-0.11
|
||||
* Support criterion-1.1.0.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 12 18:49:55 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 0.3.3.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 29 09:47:51 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
- Remove ExclusiveArch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 2 18:00:30 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
- Initial package
|
||||
|
Loading…
Reference in New Issue
Block a user