Difference between revisions of "Template:Main/News"

From HaskellWiki
Jump to navigation Jump to search
m
(this week's news)
Line 1: Line 1:
''2007-09-23''
+
''2007-11-11''
   
<ul><li><p><em>Cabal 1.2.0 released</em>. Thomas Schilling
+
<ul><li><p><em>GHC 6.8.1</em>. Ian Lynagh
[http://article.gmane.org/gmane.comp.lang.haskell.libraries/7491 announced] that [http://www.haskell.org/cabal Cabal] version 1.2.0 is available. The major new feature in this release is support for Cabal configurations. This allows package authors to more easily adopt their package descriptions to different system parameters such as operating system, architecture, or compiler. In addition, some optional features may be enabled or disabled explicitly by the package user.</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15733 announced] the release of GHC 6.8.1, a new major release of GHC. There have been a number of significant changes since the last major release, including: Haskell Program Coverage support, the GHCi debugger, pointer tagging in the runtime (with up to 10-15% speedups), constructor specialisation, improved optimisations and much more! The [http://haskell.org/ghc/docs/6.8.1/html/users_guide/release-6-8-1.html full release notes] are available.</p></li>
 
 
<li><p><em>SparseCheck</em>. Matthew Naylor
+
<li><p><em>Gtk2Hs 0.9.12.1</em>. Duncan Coutts
[http://article.gmane.org/gmane.comp.lang.haskell.general/15593 announced] SparseCheck, a library for typed, depth-bounded logic programming in Haskell allowing convenient expression of test-data generators for properties with sparse domains. More information on the [http://www.cs.york.ac.uk/~mfn/sparsecheck/ home page].</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15738 announced] version 0.9.12.1 of gtk2hs is [http://haskell.org/gtk2hs/download/ now available]. gtk2hs is the standard graphics library for Haskell.</p></li>
 
 
<li><p><em>monadLib 3.3.0</em>. Iavor Diatchki
+
<li><p><em>Lazy SmallCheck 0.1</em>. Matthew Naylor
[http://article.gmane.org/gmane.comp.lang.haskell.general/15586 announced] a new version of monadLib, adding the identiy transformer, and a family of deriving functions.</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15702 announced] Lazy SmallCheck 0.1, a library for exhaustive, demand-driven testing of Haskell programs.</p></li>
 
 
<li><p><em>ListLike</em>. John Goerzen
+
<li><p><em>HDBC 1.1.3</em>. John Goerzen
[http://article.gmane.org/gmane.comp.lang.haskell.general/15582 announced] ListLike, a generic interface to the various list-like structures in Haskell.</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15729 announced] new releases of HDBC, the Haskell database connectivity kit, and its associated backends (for sqlite3, postgresql, odbc).</p></li>
 
 
<li><p><em>HaL2: Meeting Haskell in Leipzig 2: videos</em>. Klaus Meier
+
<li><p><em>xmobar</em>. Andrea Rossato
[http://article.gmane.org/gmane.comp.lang.haskell.general/15565 announced] that the videos and presentations of the talks given at HaL2 are [http://iba-cg.de/haskell.html now online].</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/31465 announced] the release of Xmobar-0.8, a minimalistic, text based, status bar. It was specifically designed to work with the XMonad Window Manager.</p></li>
 
 
<li><p><em>The Monad.Reader: Issue 8</em>. Wouter Swierstra
+
<li><p><em>Flymake Haskell</em>. Daisuke Ikegami
[http://article.gmane.org/gmane.comp.lang.haskell.general/15554 announced] that the latest issue of The Monad.Reader is [http://www.haskell.org/haskellwiki/The_Monad.Reader now available]. Issue 8 consists of the following two articles: Brent Yorgey on 'Generating Multiset Partitions' and Conrad Parker's 'Type-Level Instant Insanity'</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/31453 announced] flymake haskell, emacs bindings for interactive Haskell editing.</p></li>
 
 
<li><p><em>Haskell mode plugins for Vim</em>. Claus Reinke
+
<li><p><em>network bytestring</em>. Johan Tibbel
[http://article.gmane.org/gmane.comp.lang.haskell.general/15553 announced] improved [http://article.gmane.org/gmane.comp.lang.haskell.general/15553 haskell mode plugins for vim].</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15645 announced], strict ByteString versions of the recv/send family of functions for efficient network IO.</p></li>
 
 
<li><p><em>hstats-0.1</em>. Marshall Beddoe
+
<li><p><em>ByteString search</em>. Bryan O'Sullivan
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28973 announced] a statistical computing module for Haskell. </p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/31229 announced] a cabalised version of the fast Boyer-Moore and Knuth-Morris-Pratt string search code for ByteStrings</p></li>
 
 
<li><p><em>HIntegerByInt</em>. Isaac Dupree
+
<li><p><em>Generating free theorems</em>. Janis Voigtlaender
  +
[http://article.gmane.org/gmane.comp.lang.haskell.general/15693 announced] an improved version of the online and offline free theorems generator for Haskell</p></li>
[http://thread.gmane.org/gmane.comp.lang.haskell.libraries/7285 announced] a [http://isaac.cedarswampstudios.org/2007/HIntegerByInt reimplementation], in Haskell, of the Integer type that Haskell provides in its Prelude. It is designed in mind of being actually usable as the implementation of that type, for compilers. It is also a module that exports a working Integer type. It is in terms of only basic Prelude functions, lists, and Int. It is NOT a purely inductive definition, because Int is much faster than a purely inductive definition would allow, and nevertheless often easier to come by (more portable, license-wise, size-wise, nuisance-wise...) than GMP or other C bignum libraries. </p></li>
 
 
 
<li><p><em>OzHaskell: Australian Haskell Programmers Group</em>. Manuel Chakravarty
+
<li><p><em>hslogger4j 0.1.1</em>. Bjorn Buckwalter
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28883 started] organising OzHaskell, and Australian Haskell user's group.</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.general/15707 announced] Hslogger4j, which provides handlers for hslogger (John Goerzen's Haskell logging framework) that are compatible with log4j's XMLLayout.</p></li>
 
 
<li><p><em>Israeli Haskell Programmers Group</em>. B K
+
<li><p><em>Infinity 0.3</em>. Austin Seipp
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28877 also seeks] to form an Israeli Haskell user's group</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/31228 announced] `infinity', an IRC bot in Haskell</p></li>
 
 
<li><p><em>xmonad 0.3</em>. Don Stewart
+
<li><p><em>hswm</em>. Remi Turk
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28425 announced] the 0.3 release of [http://xmonad.org xmonad]. xmonad is a tiling window manager for X. Windows are arranged automatically to tile the screen without gaps or overlap, maximising screen use.</p></li>
+
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/30804 announced] the first and last release of hswm, a Haskell window manager.</p></li></ul>
  +
<ul><li><p><em>xmobar-0.8</em>. Uploaded by Andrea Rossato.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xmobar-0.8 xmobar], a minimalistic text based status bar</p></li>
 
 
<li><p><em>HPDF 1.0</em>. alpheccar
+
<li><p><em>hsSqlite3-0.0.4</em>. Uploaded by Evgeny Jukov.
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28371 announced] version 1.0 of the [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HPDF-1.0 HPDF library].</p></li>
+
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/hsSqlite3-0.0.4 hsSqlite3], bindings for Sqlite3</p></li>
 
 
<li><p><em>pcap: user-level network packet capture</em>. Bryan O'Sullivan
+
<li><p><em>cabal-rpm-0.3.2</em>. Uploaded by Bryan OSullivan.
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/28139 announced] the release of pcap 0.3.1</p></li>
+
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/cabal-rpm-0.3.2 cabal-rpm] turns Haskell Cabal source packages into source and binary RPM packages.</p></li>
 
 
<li><p><em>Gtk2Hs Tutorial</em>. Hans van Thiel
+
<li><p><em>selenium-0.2.2</em>. Uploaded by Aaron Tomb.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/selenium-0.2.2 selenium], Haskell bindings to communicate with a Selenium Remote Control server. This package makes it possible to use Haskell to write test scripts that exercise web applications through a web browser.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27954 announced] a port of the GTK2 [http://tinyurl.com/yrbtsu tutorial] by Tony Gail and Ian Main to Haskell's gtk2hs.</p></li>
 
 
 
<li><p><em>An efficient lazy suffix tree library</em>. Bryan O'Sullivan
+
<li><p><em>HPDF-1.3</em>. Uploaded by alpheccar.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HPDF-1.3 HPDF]. A PDF library with support for several pages, page transitions, outlines, annotations, compression, colors, shapes, patterns, jpegs, fonts, typesetting ...</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27891 posted] a [http://www.serpentine.com/software/suffixtree/ suffix tree library] to hackage. It implements Giegerich and Kurtz's lazy construction algorithm, with a few tweaks for better performance and resource usage.</p></li>
 
 
 
<li><p><em>Bay Area Functional Programmers</em>. Keith Fahlgren
+
<li><p><em>FileManip-0.3.1</em>. Uploaded by Bryan OSullivan.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/FileManip-0.3.1 FileManip], a Haskell library for working with files and directories. Includes code for pattern matching, finding files, modifying file contents, and more.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27860 announced] the formation of the [http://bayfp.org Bay Area Functional Programmers] group. This group is for anyone using or interested in functional programming and functional programming languages, particularly strongly typed languages such as Haskell, OCaml and SML.</p></li>
 
 
 
<li><p><em>Haskell irc channel reaches 400 users</em>. Don Stewart
+
<li><p><em>stringsearch-0.2</em>. Uploaded by Bryan OSullivan.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/stringsearch-0.2 stringsearch], fast search of ByteStrings.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27826 noticed that], five and a half years after its inception, under the guiding hand of Shae Erisson (aka shapr), the [http://www.haskell.org/haskellwiki/IRC_channel Haskell IRC channel] on freenode has reached 400 users!</p></li>
 
 
 
<li><p><em>Guihaskell and PropLang 0.1</em>. Asumu Takikawa
+
<li><p><em>nano-md5-0.1</em>. Uploaded by Don Stewart.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/nano-md5-0.1 nano-md5], ByteString bindings to OpenSSL.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27598 announced] the results of his Google Summer of Code project: Guihaskell, a graphical REPL using PropLang and work on PropLang, a GUI library built on Gtk2hs that allows for high level design.</p></li>
 
 
 
<li><p><em>HAppS-Data 0.9: XML, Pairs, HList, deriveAll</em>. Alex Jacobson
+
<li><p><em>denominate-0.4.1</em>. Uploaded by Calvin Smith.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/denominate-0.4.1 denominate] provides a main program for performing bulk file and directory renaming, using a built-in filename converter or user-defined converters.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27597 announced] that the components of [http://happs.org HAppS] are being released as individual useful packages. HAppS-Data is the first in a series, and provides useful operations on XML data.</p></li>
 
 
 
<li><p><em>Introduction to proving Haskell code</em>. Tim Newsham
+
<li><p><em>ContArrow 0.0.2</em>. Uploaded by Evgeny Jukov.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ ContArrow], Control.Arrow.Transformer.Cont</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27523 put together] [http://www.thenewsh.com/%7Enewsham/formal/reverse/ a small intro lesson] on proving Haskell code using quickcheck, equational reasoning and Isabelle/HOL.</p></li>
 
 
 
<li><p><em>Very Fast Searching of ByteStrings</em>. Chris Kuklewicz
+
<li><p><em>state 0.0.2</em>. Uploaded by Evgeny Jukov.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ state]. State.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.libraries/7363 announced] a Boyer-Moore algorithm implemented for strict and lazy bytestrings (and combinations thereof). It finds all the overlapping instances of the pattern inside the target.</p></li>
 
 
 
<li><p><em>Infinity 0.1</em>. Austin Seipp
+
<li><p><em>infinity 0.3</em>. Uploaded by Austin Seipp.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ infinity], a tiny, pluggable irc bot.</p></li>
[http://article.gmane.org/gmane.comp.lang.haskell.cafe/27445 announced] Infinity v0.1. an IRC bot in the essence of lambdabot; that is, it should be extendable through plugins and plugins should be easy to write, modify and contribute.</p></li></ul>
 
  +
  +
<li><p><em>unix-compat 0.1.2.1</em>. Uploaded by Duncan Coutts.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ unix-compat], portable implementations of parts of the unix package.</p></li>
  +
  +
<li><p><em>Ranged-sets 0.1.1</em>. Uploaded by Paul Johnson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ Ranged-sets]. A ranged set is an ordered list of ranges.</p></li>
  +
  +
<li><p><em>IFS 0.1.1</em>. Uploaded by alpheccar.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ IFS], a library to describe IFS and generate PPM pictures from the descriptions</p></li>
  +
  +
<li><p><em>bktrees 0.1.3</em>. Uploaded by Josef Svenningsson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ bktrees]. Burhard-Keller trees provide an implementation of sets which apart from the ordinary operations also has an approximate member search, allowing you to search for elements that are of a certain distance from the element you are searching for.</p></li>
  +
  +
<li><p><em>pqc 0.2</em>. Uploaded by Don Stewart.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ pqc], a parallel batch driver for QuickCheck</p></li>
  +
  +
<li><p><em>strict 0.2</em>. Uploaded by Don Stewart.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ strict], strict data types.</p></li>
  +
  +
<li><p><em>HsSVN 0.2</em>. Uploaded by PHO.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ HsSVN], (Part of) Subversion binding for Haskell</p></li>
  +
  +
<li><p><em>HsHyperEstraier 0.2</em>. Uploaded by PHO.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ HsHyperEstraier], a HyperEstraier binding for Haskell. HyperEstraier is an embeddable full text search engine which is supposed to be independent to any particular natural languages.</p></li>
  +
  +
<li><p><em>HsOpenSSL 0.3.1</em>. Uploaded by PHO.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ HsOpenSSL], a (part of) OpenSSL binding for Haskell. It can generate RSA and DSA keys, read and write PEM files, generate message digests, sign and verify messages, encrypt and decrypt messages.</p></li>
  +
  +
<li><p><em>Finance-Quote-Yahoo 0.4</em>. Uploaded by Brad Clawsie.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Finance-Quote-Yahoo-0.4 Finance-Quote-Yahoo], obtain quote data from finance.yahoo.com</p></li>
  +
  +
<li><p><em>LRU 0.1.1</em>. Uploaded by Adam Langley.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/LRU-0.1.1 LRU], an LRU data structure</p></li>
  +
  +
<li><p><em>base 3.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/base-3.0.0.0 base], the Prelude and its support libraries, and a large collection of useful libraries ranging from data structures to parsing combinators and debugging utilities.</p></li>
  +
  +
<li><p><em>regex-posix 0.72.0.2</em>. Uploaded by Duncan Coutts.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-posix-0.72.0.2 regex-posix], posix regex support.</p></li>
  +
  +
<li><p><em>xhtml 3000.0.2.1</em>. Uploaded by Bjorn Bringert.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/xhtml-3000.0.2.1 xhtml], combinators for producing XHTML 1.0, including the Strict, Transitional and Frameset variants.</p></li>
  +
  +
<li><p><em>Win32 2.1.0.0</em>. Uploaded by Esa Ilari Vuokko.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Win32-2.1.0.0 Win32], a binding to part of the Win32 library</p></li>
  +
  +
<li><p><em>unix 2.2.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/unix-2.2.0.0 unix], POSIX functionality</p></li>
  +
  +
<li><p><em>time 1.1.2.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/time-1.1.2.0 time], time handling.</p></li>
  +
  +
<li><p><em>template-haskell 2.2.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/template-haskell-2.2.0.0 template-haskell], support for manipulating Haskell syntax trees</p></li>
  +
  +
<li><p><em>stm 2.1.1.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/stm-2.1.1.0 stm], software transational memory</p></li>
  +
  +
<li><p><em>regex-compat 0.71.0.1</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-compat-0.71.0.1 regex-compat], backwards compatible regex support</p></li>
  +
  +
<li><p><em>regex-base 0.72.0.1</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base-0.72.0.1 regex-base], regex support.</p></li>
  +
  +
<li><p><em>readline 1.0.1.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/readline-1.0.1.0 readline], an interface to the GNU readline library</p></li>
  +
  +
<li><p><em>random 1.0.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/random-1.0.0.0 random], random number generation</p></li>
  +
  +
<li><p><em>QuickCheck 1.1.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/QuickCheck-1.1.0.0 QuickCheck], automatic testing of Haskell programs</p></li>
  +
  +
<li><p><em>process 1.0.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/process-1.0.0.0 process], jobs and processes</p></li>
  +
  +
<li><p><em>pretty 1.0.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/pretty-1.0.0.0 pretty], pretty printing library.</p></li>
  +
  +
<li><p><em>parsec 2.1.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/parsec-2.1.0.0 parsec], monadic parser combinators.</p></li>
  +
  +
<li><p><em>parallel 1.0.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/parallel-1.0.0.0 parallel], support for parallel programming</p></li>
  +
  +
<li><p><em>packedstring 0.1.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/packedstring-0.1.0.0 packedstring], packed strings</p></li>
  +
  +
<li><p><em>OpenGL 2.2.1.1</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/OpenGL-2.2.1.1 OpenGL], binding for the OpenGL graphics system</p></li>
  +
  +
<li><p><em>OpenAL 1.3.1.1</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/OpenAL-1.3.1.1 OpenAL], binding to the OpenAL cross-platform 3D audio API.</p></li>
  +
  +
<li><p><em>old-time 1.0.0.0</em>. Uploaded by Ross Paterson.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/old-time-1.0.0.0 old-time], time library.</p></li>
  +
  +
<li><p><em>alex 2.2</em>. Uploaded by Simon Marlow.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alex-2.2 alex] is a tool for generating lexical analysers in Haskell</p></li>
  +
  +
<li><p><em>Cabal 1.2.2.0</em>. Uploaded by Duncan Coutts.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Cabal-1.2.2.0 Cabal] is the framework for packaging Haskell software</p></li>
  +
  +
<li><p><em>HaXml 1.19.1</em>. Uploaded by Malcolm Wallace.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HaXml-1.19.1 HaXml], Utilities for manipulating XML documents</p></li>
  +
  +
<li><p><em>HDBC-odbc 1.1.3.0</em>. Uploaded by John Goerzen.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HDBC-odbc-1.1.3.0 HDBC-odbc], ODBC driver for HDBC</p></li>
  +
  +
<li><p><em>HDBC-postgresql 1.1.3.0</em>. Uploaded by John Goerzen.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HDBC-postgresql-1.1.3.0 HDBC-postgresql] is a PostgreSQL driver for HDBC</p></li>
  +
  +
<li><p><em>HDBC-sqlite3 1.1.3.0</em>. Uploaded by John Goerzen.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HDBC-sqlite3-1.1.3.0 HDBC-sqlite3] is a Sqlite v3 driver for HDBC</p></li>
  +
  +
<li><p><em>HDBC 1.1.3</em>. Uploaded by John Goerzen.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HDBC-1.1.3 HDBC] is a Haskell Database library</p></li>
  +
  +
<li><p><em>X11 1.3.0</em>. Uploaded by Don Stewart.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11-1.3.0 X11] is a library of bindings to the X11 libraries and server</p></li>
  +
  +
<li><p><em>HsOpenSSL 0.3</em>. Uploaded by Masatake Daimon.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HsOpenSSL-0.3 HsOpenSSL], (Part of) OpenSSL binding for Haskell</p></li>
  +
  +
<li><p><em>Imlib 0.1</em>. Uploaded by Cale Gibbard.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Imlib-0.1 Imlib], Haskell binding for Imlib 2</p></li>
  +
  +
<li><p><em>Stream 0.2.2</em>. Uploaded by Wouter Swierstra.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Stream-0.2.2 Stream], a library for manipulating infinite lists.</p></li>
  +
  +
<li><p><em>sat 1.0</em>. Uploaded by AndriiZvorygin.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/sat-1.0 sat], CNF SATisfier</p></li>
  +
  +
<li><p><em>torrent 2007.10.27</em>. Uploaded by David Himmelstrup.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/torrent-2007.10.27 torrent], BitTorrent file parser</p></li>
  +
  +
<li><p><em>bencode 0.2</em>. Uploaded by David Himmelstrup.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/bencode-0.2 bencode], Parser and printer for bencoded data.</p></li>
  +
  +
<li><p><em>SDL 0.5.1</em>. Uploaded by David Himmelstrup.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/SDL-0.5.1 SDL], binding to libSDL</p></li>
  +
  +
<li><p><em>NGrams 1.0</em>. Uploaded by Justin Bailey.
  +
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/NGrams-1.0 ngrams], Simple application for calculating n-grams using Google</p></li></ul>
   
 
[[Old news|More news]]
 
[[Old news|More news]]

Revision as of 02:12, 12 November 2007

2007-11-11

  • GHC 6.8.1. Ian Lynagh announced the release of GHC 6.8.1, a new major release of GHC. There have been a number of significant changes since the last major release, including: Haskell Program Coverage support, the GHCi debugger, pointer tagging in the runtime (with up to 10-15% speedups), constructor specialisation, improved optimisations and much more! The full release notes are available.

  • Gtk2Hs 0.9.12.1. Duncan Coutts announced version 0.9.12.1 of gtk2hs is now available. gtk2hs is the standard graphics library for Haskell.

  • Lazy SmallCheck 0.1. Matthew Naylor announced Lazy SmallCheck 0.1, a library for exhaustive, demand-driven testing of Haskell programs.

  • HDBC 1.1.3. John Goerzen announced new releases of HDBC, the Haskell database connectivity kit, and its associated backends (for sqlite3, postgresql, odbc).

  • xmobar. Andrea Rossato announced the release of Xmobar-0.8, a minimalistic, text based, status bar. It was specifically designed to work with the XMonad Window Manager.

  • Flymake Haskell. Daisuke Ikegami announced flymake haskell, emacs bindings for interactive Haskell editing.

  • network bytestring. Johan Tibbel announced, strict ByteString versions of the recv/send family of functions for efficient network IO.

  • ByteString search. Bryan O'Sullivan announced a cabalised version of the fast Boyer-Moore and Knuth-Morris-Pratt string search code for ByteStrings

  • Generating free theorems. Janis Voigtlaender announced an improved version of the online and offline free theorems generator for Haskell

  • hslogger4j 0.1.1. Bjorn Buckwalter announced Hslogger4j, which provides handlers for hslogger (John Goerzen's Haskell logging framework) that are compatible with log4j's XMLLayout.

  • Infinity 0.3. Austin Seipp announced `infinity', an IRC bot in Haskell

  • hswm. Remi Turk announced the first and last release of hswm, a Haskell window manager.

  • xmobar-0.8. Uploaded by Andrea Rossato. xmobar, a minimalistic text based status bar

  • hsSqlite3-0.0.4. Uploaded by Evgeny Jukov. hsSqlite3, bindings for Sqlite3

  • cabal-rpm-0.3.2. Uploaded by Bryan OSullivan. cabal-rpm turns Haskell Cabal source packages into source and binary RPM packages.

  • selenium-0.2.2. Uploaded by Aaron Tomb. selenium, Haskell bindings to communicate with a Selenium Remote Control server. This package makes it possible to use Haskell to write test scripts that exercise web applications through a web browser.

  • HPDF-1.3. Uploaded by alpheccar. HPDF. A PDF library with support for several pages, page transitions, outlines, annotations, compression, colors, shapes, patterns, jpegs, fonts, typesetting ...

  • FileManip-0.3.1. Uploaded by Bryan OSullivan. FileManip, a Haskell library for working with files and directories. Includes code for pattern matching, finding files, modifying file contents, and more.

  • stringsearch-0.2. Uploaded by Bryan OSullivan. stringsearch, fast search of ByteStrings.

  • nano-md5-0.1. Uploaded by Don Stewart. nano-md5, ByteString bindings to OpenSSL.

  • denominate-0.4.1. Uploaded by Calvin Smith. denominate provides a main program for performing bulk file and directory renaming, using a built-in filename converter or user-defined converters.

  • ContArrow 0.0.2. Uploaded by Evgeny Jukov. ContArrow, Control.Arrow.Transformer.Cont

  • state 0.0.2. Uploaded by Evgeny Jukov. state. State.

  • infinity 0.3. Uploaded by Austin Seipp. infinity, a tiny, pluggable irc bot.

  • unix-compat 0.1.2.1. Uploaded by Duncan Coutts. unix-compat, portable implementations of parts of the unix package.

  • Ranged-sets 0.1.1. Uploaded by Paul Johnson. Ranged-sets. A ranged set is an ordered list of ranges.

  • IFS 0.1.1. Uploaded by alpheccar. IFS, a library to describe IFS and generate PPM pictures from the descriptions

  • bktrees 0.1.3. Uploaded by Josef Svenningsson. bktrees. Burhard-Keller trees provide an implementation of sets which apart from the ordinary operations also has an approximate member search, allowing you to search for elements that are of a certain distance from the element you are searching for.

  • pqc 0.2. Uploaded by Don Stewart. pqc, a parallel batch driver for QuickCheck

  • strict 0.2. Uploaded by Don Stewart. strict, strict data types.

  • HsSVN 0.2. Uploaded by PHO. HsSVN, (Part of) Subversion binding for Haskell

  • HsHyperEstraier 0.2. Uploaded by PHO. HsHyperEstraier, a HyperEstraier binding for Haskell. HyperEstraier is an embeddable full text search engine which is supposed to be independent to any particular natural languages.

  • HsOpenSSL 0.3.1. Uploaded by PHO. HsOpenSSL, a (part of) OpenSSL binding for Haskell. It can generate RSA and DSA keys, read and write PEM files, generate message digests, sign and verify messages, encrypt and decrypt messages.

  • Finance-Quote-Yahoo 0.4. Uploaded by Brad Clawsie. Finance-Quote-Yahoo, obtain quote data from finance.yahoo.com

  • LRU 0.1.1. Uploaded by Adam Langley. LRU, an LRU data structure

  • base 3.0. Uploaded by Ross Paterson. base, the Prelude and its support libraries, and a large collection of useful libraries ranging from data structures to parsing combinators and debugging utilities.

  • regex-posix 0.72.0.2. Uploaded by Duncan Coutts. regex-posix, posix regex support.

  • xhtml 3000.0.2.1. Uploaded by Bjorn Bringert. xhtml, combinators for producing XHTML 1.0, including the Strict, Transitional and Frameset variants.

  • Win32 2.1.0.0. Uploaded by Esa Ilari Vuokko. Win32, a binding to part of the Win32 library

  • unix 2.2.0.0. Uploaded by Ross Paterson. unix, POSIX functionality

  • time 1.1.2.0. Uploaded by Ross Paterson. time, time handling.

  • template-haskell 2.2.0.0. Uploaded by Ross Paterson. template-haskell, support for manipulating Haskell syntax trees

  • stm 2.1.1.0. Uploaded by Ross Paterson. stm, software transational memory

  • regex-compat 0.71.0.1. Uploaded by Ross Paterson. regex-compat, backwards compatible regex support

  • regex-base 0.72.0.1. Uploaded by Ross Paterson. regex-base, regex support.

  • readline 1.0.1.0. Uploaded by Ross Paterson. readline, an interface to the GNU readline library

  • random 1.0.0.0. Uploaded by Ross Paterson. random, random number generation

  • QuickCheck 1.1.0.0. Uploaded by Ross Paterson. QuickCheck, automatic testing of Haskell programs

  • process 1.0.0.0. Uploaded by Ross Paterson. process, jobs and processes

  • pretty 1.0.0.0. Uploaded by Ross Paterson. pretty, pretty printing library.

  • parsec 2.1.0.0. Uploaded by Ross Paterson. parsec, monadic parser combinators.

  • parallel 1.0.0.0. Uploaded by Ross Paterson. parallel, support for parallel programming

  • packedstring 0.1.0.0. Uploaded by Ross Paterson. packedstring, packed strings

  • OpenGL 2.2.1.1. Uploaded by Ross Paterson. OpenGL, binding for the OpenGL graphics system

  • OpenAL 1.3.1.1. Uploaded by Ross Paterson. OpenAL, binding to the OpenAL cross-platform 3D audio API.

  • old-time 1.0.0.0. Uploaded by Ross Paterson. old-time, time library.

  • alex 2.2. Uploaded by Simon Marlow. alex is a tool for generating lexical analysers in Haskell

  • Cabal 1.2.2.0. Uploaded by Duncan Coutts. Cabal is the framework for packaging Haskell software

  • HaXml 1.19.1. Uploaded by Malcolm Wallace. HaXml, Utilities for manipulating XML documents

  • HDBC-odbc 1.1.3.0. Uploaded by John Goerzen. HDBC-odbc, ODBC driver for HDBC

  • HDBC-postgresql 1.1.3.0. Uploaded by John Goerzen. HDBC-postgresql is a PostgreSQL driver for HDBC

  • HDBC-sqlite3 1.1.3.0. Uploaded by John Goerzen. HDBC-sqlite3 is a Sqlite v3 driver for HDBC

  • HDBC 1.1.3. Uploaded by John Goerzen. HDBC is a Haskell Database library

  • X11 1.3.0. Uploaded by Don Stewart. X11 is a library of bindings to the X11 libraries and server

  • HsOpenSSL 0.3. Uploaded by Masatake Daimon. HsOpenSSL, (Part of) OpenSSL binding for Haskell

  • Imlib 0.1. Uploaded by Cale Gibbard. Imlib, Haskell binding for Imlib 2

  • Stream 0.2.2. Uploaded by Wouter Swierstra. Stream, a library for manipulating infinite lists.

  • sat 1.0. Uploaded by AndriiZvorygin. sat, CNF SATisfier

  • torrent 2007.10.27. Uploaded by David Himmelstrup. torrent, BitTorrent file parser

  • bencode 0.2. Uploaded by David Himmelstrup. bencode, Parser and printer for bencoded data.

  • SDL 0.5.1. Uploaded by David Himmelstrup. SDL, binding to libSDL

  • NGrams 1.0. Uploaded by Justin Bailey. ngrams, Simple application for calculating n-grams using Google

More news