Skip to content

Commit

Permalink
Update library version and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhartnett committed Feb 14, 2024
1 parent 47deef6 commit 0cea46d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Nim wrapper for [Facebook's RocksDB](https://github.com/facebook/rocksdb), a p

## Current status

Nim-RocksDB currently provides a wrapper for the low-level functions of RocksDB
Nim-RocksDB provides a wrapper for the low-level functions in the librocksdb c library.

## Requirements

Expand All @@ -30,14 +30,6 @@ nim c -d:LibrocksbStaticArgs='-l:librocksdb.a' --gcc.linkerexe=g++ --threads:on

(we need the C++ linker profile because it's a C++ library)

## Future directions

In the future, Nim-RocksDB might provide a high-level API that:

- is more in line with Nim conventions (types in CamelCase),
- automatically checks for errors,
- leverage Nim features like destructors for automatic resource cleanup.

### Contribution

Any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any
Expand Down
4 changes: 2 additions & 2 deletions rocksdb.nimble
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
packageName = "rocksdb"
version = "0.3.1"
version = "0.4.0"
author = "Status Research & Development GmbH"
description = "A wrapper for Facebook's RocksDB, an embeddable, persistent key-value store for fast storage"
license = "Apache License 2.0 or GPLv2"
skipDirs = @["examples", "tests"]
mode = ScriptMode.Verbose

### Dependencies
requires "nim >= 1.2.0",
requires "nim >= 1.6.0",
"stew",
"tempfile",
"unittest2"
Expand Down

0 comments on commit 0cea46d

Please sign in to comment.