diff --git a/bindings/java/build.xml b/bindings/java/build.xml
old mode 100755
new mode 100644
index 7b978148f7e73bbac6cc7e0b98d0d5ea117be925..89e5ffe34416b4b7e8057154668e7fadff50b415
--- 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.1"/>
+<property name="VERSION" value="4.6.2"/>
 
 	<!-- set global properties for this build -->
 	<property name="default-jar-location" location="/usr/share/java"/>
diff --git a/configure.ac b/configure.ac
index d05fdf2cdbe8a841ef696e1ac90cc30573b6db23..b6596bfca639b50ffeead33e432829c3d0256664 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.1)
+AC_INIT(sleuthkit, 4.6.2)
 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/packages/sleuthkit.spec b/packages/sleuthkit.spec
index 7395a55dae906e02c3d287394099804c4aa9764d..c79417444a6e05c0b9d0343aad82c4b5f30877b8 100644
--- a/packages/sleuthkit.spec
+++ b/packages/sleuthkit.spec
@@ -1,5 +1,5 @@
 Name:		sleuthkit	
-Version:	4.6.1
+Version:	4.6.2
 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 61feaf0f4400aa8878b4d76938d27fcfeb34438e..6da9a049ad1f30383fd9edca7c3c35ebee10c128 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:2:4 $(LIBTSK_LDFLAGS)
+libtsk_la_LDFLAGS = -version-info 17:3:4 $(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 cdd9bfffda2839c8405612fe254bfd48912d05c7..9f3fe58e5d1c47c9ac5bce33927aa221e30c23d9 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 0x040601ff
+#define TSK_VERSION_NUM 0x040602ff
 
 /** Version of code in string form. See TSK_VERSION_NUM for
  * integer form. */
-#define TSK_VERSION_STR "4.6.1"
+#define TSK_VERSION_STR "4.6.2"
 
 
 /* include the TSK-specific header file that we created in autoconf