rocksdb-haskell-jprupp 2.1.6 → 2.1.7
raw patch · 6 files changed
+12/−21 lines, 6 files
Files
- AUTHORS +1/−1
- CHANGELOG.md +4/−0
- LICENSE +1/−1
- rocksdb-haskell-jprupp.cabal +4/−4
- src/Database/RocksDB.hs +0/−14
- src/Database/RocksDB/Base.hs +2/−1
AUTHORS view
@@ -3,7 +3,7 @@ Austin Seipp Alexander Thiemann-Jean-Pierre Rupp+JP Rupp Kim Altintop Michael Lazarev Nicolas Trangez
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 2.1.7++ * Simplify author name.+ ## 2.1.6 * Refactor memory use further.
LICENSE view
@@ -1,6 +1,6 @@ Copyright (c) 2011, Kim Altintop Copyright (c) 2014, Alexander Thiemann-Copyright (c) 2020, Jean-Pierre Rupp+Copyright (c) 2025, JP Rupp All rights reserved.
rocksdb-haskell-jprupp.cabal view
@@ -1,19 +1,19 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.2.+-- This file has been generated from package.yaml by hpack version 0.38.0. -- -- see: https://github.com/sol/hpack ----- hash: 980f107d02562d992868728e11392b8fdba57955009c1531d95928a54247f8de+-- hash: bd91a467d6bd847de202b5a719feec0870396e6f5dcdb305c82ef81b2dbe33be name: rocksdb-haskell-jprupp-version: 2.1.6+version: 2.1.7 synopsis: Haskell bindings for RocksDB description: See README at <https://github.com/jprupp/rocksdb-haskell#readme> category: Database, FFI homepage: https://github.com/jprupp/rocksdb-haskell#readme bug-reports: https://github.com/jprupp/rocksdb-haskell/issues-maintainer: Jean-Pierre Rupp <jprupp@protonmail.ch>+maintainer: JP Rupp <jprupp@protonmail.ch> license: BSD3 license-file: LICENSE build-type: Simple
src/Database/RocksDB.hs view
@@ -1,17 +1,3 @@--- |--- Module : Database.RocksDB--- Copyright : (c) 2012-2013 The leveldb-haskell Authors--- (c) 2014 The rocksdb-haskell Authors--- (c) 2020 Jean-Pierre Rupp--- License : BSD3--- Maintainer : jprupp@protonmail.ch--- Stability : experimental--- Portability : non-portable------ RocksDB Haskell binding.------ The API closely follows the C-API of RocksDB.- module Database.RocksDB (module Base) where import Database.RocksDB.Base as Base
src/Database/RocksDB/Base.hs view
@@ -72,7 +72,8 @@ -- | Open a database. ----- The returned handle should be released with 'close'.+-- The returned handle will be automatically released with 'close'+-- when the function exits. withDB :: MonadUnliftIO m => FilePath -> Config -> (DB -> m a) -> m a withDB path config f = withOptions config $ \opts_ptr ->