diff --git a/Makefile b/Makefile
index 22ae81eb93d8233bac420de9a0f998cb517f8e35..a9011439e8be43102347f04d5c501eda4bcdb11f 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ export WITH_DEBUG = 1
 # SOVERSION should be numerical only - it becomes the shared lib soversion
 # EXTVERS (optional) describes the build, e.g. "dbg", "et", "gcc33" etc.
 SOVERSION  := 1.6
-PATCH   := 1
+PATCH   := 2
 VERSION := $(SOVERSION).$(PATCH)
 EXTVERS :=
 #EXTVERS := -et
diff --git a/SConstruct b/SConstruct
index 8814cbe4ff2099b6c9d2205f8864e685870b35e2..df000209cbb7351ce5474ba97fa6d0a7b5d38b70 100644
--- a/SConstruct
+++ b/SConstruct
@@ -18,7 +18,7 @@ baseenv.Append(HA_SRC = baseenv.subst('$HA_DIR')+'/src ')
 baseenv.Append(HA_DC = baseenv.subst('$HA_DIR')+'/hana_decode ')
 baseenv.Append(MAJORVERSION = '1')
 baseenv.Append(MINORVERSION = '6')
-baseenv.Append(PATCH = '1')
+baseenv.Append(PATCH = '2')
 baseenv.Append(SOVERSION = baseenv.subst('$MAJORVERSION')+'.'+baseenv.subst('$MINORVERSION'))
 baseenv.Append(VERSION = baseenv.subst('$SOVERSION')+'.'+baseenv.subst('$PATCH'))
 baseenv.Append(NAME = 'analyzer-'+baseenv.subst('$VERSION'))