Merge branch 'release/0.3.6' into develop
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 589c7e6..6e83553 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@
 
 set(PROJECT_MAJOR_VERSION 0)
 set(PROJECT_MINOR_VERSION 3)
-set(PROJECT_PATCH_VERSION 5)
+set(PROJECT_PATCH_VERSION 6)
 
 set (PROJECT_VERSION ${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}.${PROJECT_PATCH_VERSION})
 set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
diff --git a/ChangeLog b/ChangeLog
index 58882d3..1155af1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+v0.3.6
+ - Removed submodule dependencies 
+ - Added various evhtp_hdr functions
+    * evhtp_hdrs_new(): creates a new evhtp_hdrs_t struct
+    * evhtp_hdr_copy(): creates a copy of a evhtp_hdr_t struct
+    * evhtp_hdrs_copy(): creates a copy of a evhtp_hdrs_t struct
+ - Added a default request callback if the user has not defined one.
+ - Added some informational SSL accessor functions
+
+
 v0.3.5
  - Added evhtp_request_t accessors
 
diff --git a/evhtp.h b/evhtp.h
index be4d5c2..5b64b04 100644
--- a/evhtp.h
+++ b/evhtp.h
@@ -17,7 +17,7 @@
 #include <openssl/rand.h>
 #endif
 
-#define EVHTP_VERSION "0.3.5"
+#define EVHTP_VERSION "0.3.6"
 
 struct evhtp;
 struct evhtp_hdrs;