-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0 Released on 2020-07-18, Nelson Mandela International Day. Added * intercalate for DList (#43, Jacob Leach) * Traversable instance for DList (#45, Veronika Romashkina) * Data.DList.Internal for the DList implementation, Data.DList.Unsafe for exporting the DList constructor UnsafeDList and record label unsafeApplyDList (#55, #59) * Data.DList.DNonEmpty (#60) * GitHub Action for uploading a release (#74) * dlist-bench, a benchmark package (#71) Changed * stimes for DList defined with stimesMonoid (#46, Janek Spaderna) * Type of tail: DList a -> DList a to DList a -> [a] (#69) * GitHub Action for continuous integration testing to replace Travis-CI (#47, #50) * GHC warning and error improvements (#72, #73) * Improved documentation (#55, #70, #76, #77) Removed * list :: b -> (a -> DList a -> b) -> DList a -> b (#69) v0.8.0.8 Released on 2020-04-02, World Autism Awareness Day. Added * toList in the Foldable instance for DList (#36, Ryan Scott) Changed * QuickCheck upper bound: 2.14 to 2.15 (a7ea60d) Fixed * Documented time complexity of head for DList (#35, Simon Jakobi)
- Loading branch information
1 parent
8e38eaf
commit 762f6ff
Showing
4 changed files
with
41 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
@comment $NetBSD: PLIST,v 1.3 2020/05/11 17:52:02 rillig Exp $ | ||
${HS_INTF}/package-description | ||
${HS_INTF}/package-id | ||
${HS_IMPL}/Data/DList.dyn_hi | ||
${HS_IMPL}/Data/DList.hi | ||
${HS_IMPL}/Data/DList.p_hi | ||
${HS_IMPL}/libHS${HS_PKGID}.a | ||
${HS_IMPL}/libHS${HS_PKGID}_p.a | ||
@comment $NetBSD: PLIST,v 1.4 2021/04/23 06:06:12 pho Exp $ | ||
lib/dlist-${PKGVERSION}/${HS_VERSION}/package-description | ||
lib/dlist-${PKGVERSION}/${HS_VERSION}/package-id | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList.dyn_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList.hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList.p_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty.dyn_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty.hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty.p_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty/Internal.dyn_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty/Internal.hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/DNonEmpty/Internal.p_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Internal.dyn_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Internal.hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Internal.p_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Unsafe.dyn_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Unsafe.hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/Data/DList/Unsafe.p_hi | ||
lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a | ||
lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a | ||
lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so | ||
${HS_DOCS}/LICENSE | ||
${HS_DOCS}/html/Data-DList.html | ||
${HS_DOCS}/html/dlist.haddock | ||
${HS_DOCS}/html/doc-index.html | ||
${HS_DOCS}/html/haddock-bundle.min.js | ||
${HS_DOCS}/html/index.html | ||
${HS_DOCS}/html/linuwial.css | ||
${HS_DOCS}/html/meta.json | ||
${HS_DOCS}/html/quick-jump.css | ||
${HS_DOCS}/html/synopsis.png | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/Data-DList-DNonEmpty.html | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/Data-DList.html | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/dlist.haddock | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/doc-index.html | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/haddock-bundle.min.js | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/index.html | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/linuwial.css | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/meta.json | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/quick-jump.css | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/html/synopsis.png | ||
share/doc/${HS_PLATFORM}/dlist-${PKGVERSION}/license.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.6 2019/12/31 07:33:17 pho Exp $ | ||
$NetBSD: distinfo,v 1.7 2021/04/23 06:06:12 pho Exp $ | ||
|
||
SHA1 (dlist-0.8.0.7.tar.gz) = 0e7e13eef242694168c9f767a86eba0b35d213d7 | ||
RMD160 (dlist-0.8.0.7.tar.gz) = 539db15d2724c0d40e48232567c5cd74b38f6a59 | ||
SHA512 (dlist-0.8.0.7.tar.gz) = e98ce96819bc8c7a86f1eb402ba7c6aea95fc87502afbb40a4b61ac6dc9a9793ca6f6042f633733c9e0e7c7f3f77711809767ecd213639bfa3b77e71bd6bd806 | ||
Size (dlist-0.8.0.7.tar.gz) = 9228 bytes | ||
SHA1 (dlist-1.0.tar.gz) = 4803b4cefb1a1076ce3e918cd4af52cb5f69f778 | ||
RMD160 (dlist-1.0.tar.gz) = 5ce78649bb7d2e93632e84855edb45e40b0ed789 | ||
SHA512 (dlist-1.0.tar.gz) = 8985b9e775e8d99c3d8cf59eabfb7ed13c395482186b086831a79afea9b980ee59e386856df82dcc030f430be55cc95fa057e962776fe37a371e8be5ae19abef | ||
Size (dlist-1.0.tar.gz) = 18667 bytes |