Skip to content

Commit

Permalink
Add changlog for verion 0.2.0 in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
seladb committed Jan 23, 2019
1 parent c4887a9 commit ac0a607
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,14 @@ There are currently two examples shipped with PickleDB:
* [Hello World](https://github.com/seladb/pickledb-rs/tree/master/examples/hello_world) which shows the basic usage of PickleDB:
create a new DB, load a DB from file, get/set key-value pairs of different types, and more
* [Lists](https://github.com/seladb/pickledb-rs/tree/master/examples/lists) which shows how to use lists in PickleDB:
create new lists, add/remove items from lists, retrieve items from lists, remove lists, and more
create new lists, add/remove items from lists, retrieve items from lists, remove lists, and more

## Changelog

__Version 0.2.0__

* Dump the DB to file in a crash-safe manner using a temp file (Thanks jamwt from Reddit
for the tip: https://www.reddit.com/r/rust/comments/agumun/check_out_pickledb_a_lightweight_and_simple/ee987j0)
* Extend lists became easier and multiple calls to lcreate(), ladd() and lextend() can be chained
* Added an iterator over keys and values in the DB
* Added an iterator over items in a list

0 comments on commit ac0a607

Please sign in to comment.