File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
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+
4170.3.3 (2014-06-02)
518------------------
619
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments