From 80bfbd0568535c9fc689ffd62b0e26b19bdac7d2 Mon Sep 17 00:00:00 2001
From: Chris Boden <cboden@gmail.com>
Date: Wed, 23 Dec 2015 09:54:30 -0500
Subject: [PATCH] v0.3.4 prep

---
 CHANGELOG.md                        | 19 +++++++++++++------
 LICENSE                             |  2 +-
 src/Ratchet/ConnectionInterface.php |  2 +-
 3 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ec240e1..9ee7f13 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,13 +8,20 @@ CHANGELOG
 
 ---
 
+* 0.3.4 (2015-12-23)
+
+ * BF: Edge case where version check wasn't run on message coalesce
+ * BF: Session didn't start when using pdo_sqlite
+ * BF: WAMP currie prefix check when using '#'
+ * Compatibility with Symfony 3
+
 * 0.3.3 (2015-05-26)
 
-* BF: Framing bug on large messages upon TCP fragmentation
-* BF: Symfony Router query parameter defaults applied to Request
-* BF: WAMP CURIE on all URIs
-* OriginCheck rules applied to FlashPolicy
-* Switched from PSR-0 to PSR-4
+ * BF: Framing bug on large messages upon TCP fragmentation
+ * BF: Symfony Router query parameter defaults applied to Request
+ * BF: WAMP CURIE on all URIs
+ * OriginCheck rules applied to FlashPolicy
+ * Switched from PSR-0 to PSR-4
 
 * 0.3.2 (2014-06-08)
 
@@ -119,4 +126,4 @@ CHANGELOG
 * 0.1 (2012-05-11)
 
  * First release with components: IoServer, WsServer, SessionProvider, WampServer, FlashPolicy, IpBlackList
- * I/O now handled by React, making Ratchet fully asynchronous
\ No newline at end of file
+ * I/O now handled by React, making Ratchet fully asynchronous
diff --git a/LICENSE b/LICENSE
index 293a211..7f8c128 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2015 Chris Boden
+Copyright (c) 2011-2016 Chris Boden
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/src/Ratchet/ConnectionInterface.php b/src/Ratchet/ConnectionInterface.php
index c8c4e1c..5c07a2d 100644
--- a/src/Ratchet/ConnectionInterface.php
+++ b/src/Ratchet/ConnectionInterface.php
@@ -5,7 +5,7 @@ namespace Ratchet;
  * The version of Ratchet being used
  * @var string
  */
-const VERSION = 'Ratchet/0.3.3';
+const VERSION = 'Ratchet/0.3.4';
 
 /**
  * A proxy object representing a connection to the application