sqlite-simple 0.4.5.0 → 0.4.5.1
raw patch · 2 files changed
+54/−2 lines, 2 files
Files
- changelog +51/−0
- sqlite-simple.cabal +3/−2
+ changelog view
@@ -0,0 +1,51 @@+0.4.5.0++ * Various improvements to documentation. Especially UTCTime+ parsing and printing, and how it relates to SQLite datetimes is+ better documented now.++ * Improved date/time parsing performance by adapting Leon+ P. Smith's parsers from postgresql-simple for SQLite. UTCTime+ handling is also better defined now.++ * Improved query performance+ (https://github.com/nurpax/sqlite-simple/issues/23)++ * Improved tests for all areas touched by the above change.++v0.4.4.0++ * Add FromField instance for Float++ * Improve error handling for day parsing++ * + with tests++v0.4.1.0 - v0.4.3.0 (missed tagging v0.4.2.0)++ * Improvements to withBind functionality and documentation+ (see https://github.com/nurpax/sqlite-simple/pull/26)++ * Add columnName accessor for statements++ * Expose MonadPlus on RowParser++ * Allow access to the underlying direct-sqilte connection from an+ sqlite-simple connection++ * Add Data.Text.Lazy and lazy ByteString From/ToField instances++v0.4.0.0++ * Add lastInsertRowId++ * Expose SQLite statements based streaming API+ (see https://github.com/nurpax/sqlite-simple/pull/22)++v0.3.0.0++ * Add fold, fold_, withConnection++v0.2.0.0 - v0.2.1.0++ * Optimizations to improve query rows/sec performance
sqlite-simple.cabal view
@@ -1,10 +1,10 @@ Name: sqlite-simple-Version: 0.4.5.0+Version: 0.4.5.1 Synopsis: Mid-Level SQLite client library Description: Mid-level SQLite client library, based on postgresql-simple. .- Main documentation: "Database.SQLite.Simple"+ Main documentation: <docs/Database-SQLite-Simple.html Database.SQLite.Simple> . For more info, browse to <http://github.com/nurpax/sqlite-simple> for examples & more information.@@ -25,6 +25,7 @@ Cabal-version: >= 1.10 extra-source-files: README.markdown+ changelog Library Default-language: Haskell2010