diff --git a/bindings/java/build.xml b/bindings/java/build.xml
index dd3f5e04f1832b67dc85d9597d0233436daa6357..52615de6c7410bce09f210ea57162433e5bcbba3 100644
--- a/bindings/java/build.xml
+++ b/bindings/java/build.xml
@@ -11,7 +11,7 @@
 	<import file="build-${os.family}.xml"/>
 
     <!-- Careful changing this because release-windows.pl updates it by pattern -->
-<property name="VERSION" value="4.6.6"/>
+<property name="VERSION" value="4.6.7"/>
 
 	<!-- set global properties for this build -->
 	<property name="default-jar-location" location="/usr/share/java"/>
diff --git a/configure.ac b/configure.ac
index 39f2ae155684d7787d0f5032ab2fcba1e36fc05e..55fe19a55d971bc82e1bd3fe6162af07f1f2505b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
 
-AC_INIT(sleuthkit, 4.6.6)
+AC_INIT(sleuthkit, 4.6.7)
 m4_include([m4/ax_pthread.m4])
 dnl include the version from 1.12.1. This will work for
 m4_include([m4/cppunit.m4])
diff --git a/debian/changelog b/debian/changelog
index 133cccbe5d54a3d33c568811cb4c0a941a4c2b66..3802a67b7411953aadf3a86f8516a0dd2b82ba81 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-sleuthkit-java (4.6.6-1) unstable; urgency=medium
+sleuthkit-java (4.6.7-1) unstable; urgency=medium
 
   * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
 
diff --git a/debian/sleuthkit-java.install b/debian/sleuthkit-java.install
index bb8d99c2ca85386f0ff4da9f492ce3084d21884b..9d8a4818e9e65909924f04410a9585bd8c673ffa 100644
--- a/debian/sleuthkit-java.install
+++ b/debian/sleuthkit-java.install
@@ -1,3 +1,3 @@
 bindings/java/lib/sqlite-jdbc-3.8.11.jar /usr/share/java
-bindings/java/dist/sleuthkit-4.6.6.jar /usr/share/java
+bindings/java/dist/sleuthkit-4.6.7.jar /usr/share/java
 
diff --git a/packages/sleuthkit.spec b/packages/sleuthkit.spec
index 1a6a793234db6ad19f388c45e68001db5f26fce1..27fed9749c69b73a94f2d90fefb30bd72db51216 100644
--- a/packages/sleuthkit.spec
+++ b/packages/sleuthkit.spec
@@ -1,5 +1,5 @@
 Name:		sleuthkit	
-Version:	4.6.6
+Version:	4.6.7
 Release:	1%{?dist}
 Summary:	The Sleuth Kit (TSK) is a library and collection of command line tools that allow you to investigate volume and file system data.	
 
diff --git a/tsk/Makefile.am b/tsk/Makefile.am
index f35c9887b757f94e20dc4cf8461d5f48c197b100..6a29e34e644aedfbf87283eeefc216085202766e 100644
--- a/tsk/Makefile.am
+++ b/tsk/Makefile.am
@@ -8,6 +8,6 @@ libtsk_la_LIBADD = base/libtskbase.la img/libtskimg.la \
     vs/libtskvs.la fs/libtskfs.la hashdb/libtskhashdb.la \
     auto/libtskauto.la
 # current:revision:age
-libtsk_la_LDFLAGS = -version-info 17:7:4 $(LIBTSK_LDFLAGS)
+libtsk_la_LDFLAGS = -version-info 18:0:5 $(LIBTSK_LDFLAGS)
 
 EXTRA_DIST = tsk_tools_i.h docs/Doxyfile docs/*.dox docs/*.html
diff --git a/tsk/base/tsk_base.h b/tsk/base/tsk_base.h
index 806862068d25dfd426a74cda99ae0195d638d9ee..503354cdd58acc29fecaaca8c83707710b8b919a 100644
--- a/tsk/base/tsk_base.h
+++ b/tsk/base/tsk_base.h
@@ -39,11 +39,11 @@
  * 3.1.2b1 would be 0x03010201.  Snapshot from Jan 2, 2003 would be
  * 0xFF030102.
  * See TSK_VERSION_STR for string form. */
-#define TSK_VERSION_NUM 0x040606ff
+#define TSK_VERSION_NUM 0x040607ff
 
 /** Version of code in string form. See TSK_VERSION_NUM for
  * integer form. */
-#define TSK_VERSION_STR "4.6.6"
+#define TSK_VERSION_STR "4.6.7"
 
 
 /* include the TSK-specific header file that we created in autoconf