Skip to content

Commit cfd7cc5

Browse files
committed
Update change log and readme
1 parent 51f5b5c commit cfd7cc5

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
CHANGELOG
22
=========
33

4+
0.3.4 (2014-08-27)
5+
------------------
6+
7+
* Previously the Reader would hold onto the underlying file and FileChannel,
8+
not closing them until the Reader was closed. This was unnecessary; they
9+
are now closed immediately after they are used. Fix by Andrew Snare; GitHub
10+
issue #7.
11+
* The Reader now discards the reference to the underlying buffer when
12+
`close()` is called. This is done to help ensure that the buffer is garbage
13+
collected sooner, which may mitigate file locking issues that some users
14+
have experienced on Windows when updating the database. Patch by Andrew
15+
Snare; GitHub issue #8.
16+
417
0.3.3 (2014-06-02)
518
------------------
619

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To do this, add the dependency to your pom.xml:
1919
<dependency>
2020
<groupId>com.maxmind.db</groupId>
2121
<artifactId>maxmind-db</artifactId>
22-
<version>0.3.3</version>
22+
<version>0.3.4</version>
2323
</dependency>
2424
```
2525

0 commit comments

Comments
 (0)