File ghc-vector.changes of Package ghc-vector
-------------------------------------------------------------------
Sun Jan 5 23:13:03 UTC 2025 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.2.0 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Thu Oct 31 18:01:59 UTC 2024 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.2.0.
# Changes in version 0.13.2.0
* Strict boxed vector `Data.Vector.Strict` and `Data.Vector.Strict.Mutable` is
added (#488). it ensures that all values in the vector are evaluated to WHNF.
* `DoNotUnboxStrict`, `DoNotUnboxLazy`, and `DoNotUnboxNormalForm` wrapper are
added for defining unbox instances for types that contain not unboxable fields.
[#503](https://github.com/haskell/vector/issues/506),
[#508](https://github.com/haskell/vector/pull/508)
* `spanR` and `breakR` were added [#476](https://github.com/haskell/vector/pull/476).
They allow parsing vector from the right.
* We had some improvements on `*.Mutable.{next,prev}Permutation{,By}`
[#498](https://github.com/haskell/vector/pull/498):
* Add `*.Mutable.prevPermutation{,By}` and `*.Mutable.nextPermutationBy`
* Improve time performance. We may now expect good specialization supported by inlining.
The implementation has also been algorithmically updated: in the previous implementation
the full enumeration of all the permutations of `[1..n]` took Omega(n*n!), but it now takes O(n!).
* Add tests for `{next,prev}Permutation`
* Add benchmarks for `{next,prev}Permutation`
* Cabal >= 3.0 is now required for building package (#481).
* `vector:benchmarks-O2` public sublibrary containing benchmarks is added (#481).
* Type family `Mutable` provides instances for arrays from `primitive`.
* Various documentation improvements.
-------------------------------------------------------------------
Sat Oct 19 17:27:17 UTC 2024 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.1.0 revision 2.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Sat Mar 16 15:39:47 UTC 2024 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.1.0 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Sat Oct 7 13:35:28 UTC 2023 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.1.0.
# Changes in version 0.13.1.0
* Specialized variants of `findIndexR` are reexported for all vector
types. [#469](https://github.com/haskell/vector/pull/469)
* `UnboxViaPrim` could be used for deriving `Unbox` instances (`V_UnboxViaPrim`
constructor is exported) [#450](https://github.com/haskell/vector/pull/450)
* Fields of `Data.Vector.Fusion.Bundle.Size` are now strict
[#456](https://github.com/haskell/vector/pull/456)
* Compatibility with future GHC 9.10 release
[#462](https://github.com/haskell/vector/pull/462)
* Test suite no longer fails when built with QuickCheck-2.14
[#461](https://github.com/haskell/vector/pull/461)
* Doctests now work with current versions of GHC
[#465](https://github.com/haskell/vector/pull/466)
* Various documentation improvements
-------------------------------------------------------------------
Thu Aug 10 22:02:05 UTC 2023 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.0.0 revision 5.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Thu Jul 27 21:03:32 UTC 2023 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.0.0 revision 4.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Thu Mar 30 17:08:54 UTC 2023 - Peter Simons <psimons@suse.com>
- Updated spec file to conform with ghc-rpm-macros-2.5.2.
-------------------------------------------------------------------
Mon Feb 20 18:52:29 UTC 2023 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.0.0 revision 3.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Mon Jan 16 19:15:44 UTC 2023 - Peter Simons <psimons@suse.com>
- Update vector to version 0.13.0.0 revision 2.
Upstream has edited the change log file since the last release in
a non-trivial way, i.e. they did more than just add a new entry
at the top. You can review the file at:
http://hackage.haskell.org/package/vector-0.13.0.0/src/changelog.md
-------------------------------------------------------------------
Fri May 20 23:21:44 UTC 2022 - Peter Simons <psimons@suse.com>
- Update vector to version 0.12.3.1 revision 2.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Tue Nov 16 19:51:44 UTC 2021 - psimons@suse.com
- Update vector to version 0.12.3.1 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Wed Sep 22 08:52:39 UTC 2021 - psimons@suse.com
- Update vector to version 0.12.3.1.
# Changes in version 0.12.3.1
* Bugfix for ghcjs and `Double` memset for `Storable` vector:
[#410](https://github.com/haskell/vector/issues/410)
* Avoid haddock bug: [#383](https://github.com/haskell/vector/issues/383)
* Improve haddock and doctests
* Disable problematic tests with -boundschecks [#407](https://github.com/haskell/vector/pull/407)
-------------------------------------------------------------------
Tue Sep 7 08:15:38 UTC 2021 - psimons@suse.com
- Update vector to version 0.12.3.0 revision 2.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Wed Apr 7 07:36:26 UTC 2021 - psimons@suse.com
- Update vector to version 0.12.3.0.
# Changes in version 0.12.3.0
* Fix performance regression due to introduction of `keepAlive#` primop in ghc-9.0: [#372](https://github.com/haskell/vector/pull/372)
* Add monadic functions for mutable vectors: [#338](https://github.com/haskell/vector/pull/338)
* Added folds for monadic functions: `mapM_`, `imapM_`, `forM_`, `iforM_`,
`foldl`, `foldl'`, `foldM`, `foldM'`, `ifoldl`, `ifoldl'`, `ifoldM`,
`ifoldM'`
* Added `modifyM` and `unsafeModifyM` for mutable vectors
* Added `generate` and `generateM` for mutable vectors
-------------------------------------------------------------------
Fri Jan 29 10:26:19 UTC 2021 - psimons@suse.com
- Update vector to version 0.12.2.0.
# Changes in version 0.12.2.0
* Add `MINIMAL` pragma to `Vector` & `MVector` type classes: [#11](https://github.com/haskell/vector/issues/11)
* Export `unstreamM` from`from Data.Vector.Generic`: [#70](https://github.com/haskell/vector/issues/70)
* New functions: `unfoldrExactN` and `unfoldrExactNM`: [#140](https://github.com/haskell/vector/issues/140)
* Added `iforM` and `iforM_`: [#262](https://github.com/haskell/vector/issues/262)
* Added `MonadFix` instance for boxed vectors: [#178](https://github.com/haskell/vector/issues/178)
* Added `uncons` and `unsnoc`: [#212](https://github.com/haskell/vector/issues/212)
* Added `foldMap` and `foldMap'`: [#263](https://github.com/haskell/vector/issues/263)
* Added `isSameVector` for storable vectors
* Added `toArray`, `fromArray`, `toMutableArray` and `fromMutableArray`
* Added `iscanl`, `iscanl'`, `iscanr`, `iscanr'` to `Primitive`, `Storable` and `Unboxed`
* Added `izipWithM`, `izipWithM_`, `imapM` and `imapM_` to `Primitive` and `Storable`
* Added `ifoldM`, `ifoldM'`, `ifoldM_` and `ifoldM'_` to `Primitive` and `Storable`
* Added `eqBy` and `cmpBy`
* Added `findIndexR` to `Generic`: [#172](https://github.com/haskell/vector/issues/172)
* Added `catMaybes`: [#329](https://github.com/haskell/vector/issues/329)
* Added `mapMaybeM` and `imapMaybeM`: [#183](https://github.com/haskell/vector/issues/183)
-------------------------------------------------------------------
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
- disable %{ix86} build
-------------------------------------------------------------------
Tue Aug 18 10:46:32 UTC 2020 - Peter Simons <psimons@suse.com>
- Replace %setup -q with the more modern %autosetup macro.
-------------------------------------------------------------------
Tue Jun 16 11:14:49 UTC 2020 - Peter Simons <psimons@suse.com>
- Re-generate file with latest version of spec-cleaner.
-------------------------------------------------------------------
Fri Feb 7 08:04:04 UTC 2020 - psimons@suse.com
- Update vector to version 0.12.1.2.
Upstream has renamed and modified the change log file(s) in this
release. Unfortunately, the automatic updater cannot reliable
determine relevant entries for this release.
-------------------------------------------------------------------
Fri Nov 8 16:15:11 UTC 2019 - Peter Simons <psimons@suse.com>
- Drop obsolete group attributes.
-------------------------------------------------------------------
Tue Jun 11 14:29:22 UTC 2019 - Peter Simons <psimons@suse.com>
- Update Cabal file for more accurate build dependencies.
-------------------------------------------------------------------
Wed May 1 02:03:09 UTC 2019 - psimons@suse.com
- Update vector to version 0.12.0.3.
Changes in version 0.12.0.3
* Add support for ghc >=8.8 monad fail
-------------------------------------------------------------------
Sat Dec 8 03:01:13 UTC 2018 - psimons@suse.com
- Update vector to version 0.12.0.2.
Upstream has edited the change log file since the last release in
a non-trivial way, i.e. they did more than just add a new entry
at the top. You can review the file at:
http://hackage.haskell.org/package/vector-0.12.0.2/src/changelog
-------------------------------------------------------------------
Sat Oct 20 11:32:13 UTC 2018 - Peter Simons <psimons@suse.com>
- Use https URL to refer to bugs.opensuse.org.
-------------------------------------------------------------------
Wed Jul 18 14:26:47 UTC 2018 - psimons@suse.com
- Cosmetic: replace tabs with blanks, strip trailing white space,
and update copyright headers with spec-cleaner.
-------------------------------------------------------------------
Wed Jul 18 14:14:06 UTC 2018 - psimons@suse.com
- Revise cabal build file to specify more accurate dependencies.
-------------------------------------------------------------------
Wed May 16 14:36:30 UTC 2018 - psimons@suse.com
- Prefer the new %license attribute over %doc.
- Update Cabal file to revision 2.
* add support for GHC 8.4.x
-------------------------------------------------------------------
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
-------------------------------------------------------------------
Thu Jul 27 14:07:40 UTC 2017 - psimons@suse.com
- Update to version 0.12.0.1 revision 1.
-------------------------------------------------------------------
Mon Nov 21 13:07:42 UTC 2016 - psimons@suse.com
- Update to version 0.11.0.0 revision 2 with cabal2obs.
-------------------------------------------------------------------
Sun Jul 10 17:13:13 UTC 2016 - psimons@suse.com
- Update to version 0.11.0.0 revision 1 with cabal2obs.
-------------------------------------------------------------------
Tue Dec 15 21:42:58 UTC 2015 - mimi.vx@gmail.com
- update to 0.11.0.0
* Define `Applicative` instances for `Data.Vector.Fusion.Util.{Box,Id}`
* Define non-bottom `fail` for `instance Monad Vector`
* New generalized stream fusion framework
* Various safety fixes
- Various overflows due to vector size have been eliminated
- Memory is initialized on creation of unboxed vectors
* Changes to SPEC usage to allow building under more conditions
-------------------------------------------------------------------
Tue Apr 14 08:14:02 UTC 2015 - mimi.vx@gmail.com
- update to 0.10.12.3
* Allow building with `primtive-0.6`
* Add support for `deepseq-1.4.0.0`
* Fixed compilation on non-head GHCs
* Export MVector constructor from Data.Vector.Primitive to match Vector's
(which was already exported).
* Fix building on GHC 7.9 by adding Applicative instances for Id and Box
* Support OverloadedLists for boxed Vector in GHC >= 7.8
* Add support for OverloadedLists in GHC >= 7.8
* Fix compilation with GHC 7.9
-------------------------------------------------------------------
Sat Oct 18 15:12:40 UTC 2014 - peter.trommler@ohm-hochschule.de
- update to 0.10.9.1
* no changelog
* Haskell Platform 2014.2.0.0
- regenerate spec file
- drop vector-debian-no_ann_without_ghci.patch
* we have ghci for all platforms now
-------------------------------------------------------------------
Sat Oct 18 14:10:46 UTC 2014 - dvaleev@suse.com
- Fix PowerPC 64bit builds (vector-debian-no_ann_without_ghci.patch)
https://ghc.haskell.org/trac/ghc/ticket/4268
-------------------------------------------------------------------
Sat Aug 23 00:29:05 UTC 2014 - peter.trommler@ohm-hochschule.de
- enable PowerPC builds
-------------------------------------------------------------------
Mon May 6 10:28:29 UTC 2013 - peter.trommler@ohm-hochschule.de
- BR ghc-deepseq-devel explicitly rather that relying on Cabal
to pull it in
- more transparent packaging (fewer macros)
-------------------------------------------------------------------
Mon Jan 7 09:21:01 UTC 2013 - peter.trommler@ohm-hochschule.de
- expand macro in name tag to help source validator
-------------------------------------------------------------------
Sat Nov 17 14:54:09 UTC 2012 - peter.trommler@ohm-hochschule.de
- make service loaclonly for Factory submission
-------------------------------------------------------------------
Wed Oct 17 19:01:59 UTC 2012 - peter.trommler@ohm-hochschule.de
- update to 0.10.0.1 from upstream (HP 2012.4.0.0 RC2)
-------------------------------------------------------------------
Tue Oct 2 11:35:22 UTC 2012 - peter.trommler@ohm-hochschule.de
- update to 0.10 from upstream
- required by Haskell Platform 2012.4.0.0
-------------------------------------------------------------------
Thu May 17 18:31:39 UTC 2012 - peter.trommler@ohm-hochschule.de
- spec file template generated by cabal2spec-0.25.5
-------------------------------------------------------------------
Wed Jan 18 20:38:15 UTC 2012 - herbert@graeber-clan.de
- initial packaging for Fedora automatically generated by cabal2spec-0.24.1