Skip to content

Commit

Permalink
Fixed wrong version code. Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
sumimakito committed Dec 5, 2015
1 parent d26346a commit c04a103
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ pkvdb2.get("Key");

### Changelog 更新说明

##### 1.0.3+

* Added: Supported filling the database by HashMap. 新增: 现在可以使用HashMap来填充数据库了。

##### 1.0.2+

* Added: Specific getters, less cast! 新增: 特定类型的Getter,免去Cast烦恼。
Expand Down Expand Up @@ -206,6 +210,12 @@ hckvdb = quickKv.getHCKVDB("CustomName.db"); // --> /tmp/CustomName.db
qkvdb.put(k,v); //Put everything as you like
```

##### Add plenty of data in HashMap 将HashMap中的多条数据加入

```java
qkvdb.put(hashMap); //Auto filled
```

##### Get value of the given key 通过键取得值

> This method will return a Object, you can cast it to its original type later.
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.0.2
VERSION_CODE=9
VERSION_NAME=1.0.3
VERSION_CODE=10
GROUP=com.github.sumimakito.quickkv

0 comments on commit c04a103

Please sign in to comment.