Skip to content

Commit

Permalink
Fix version in app.src file and bump version with it
Browse files Browse the repository at this point in the history
  • Loading branch information
madtrick committed Jan 28, 2014
1 parent 04484fb commit 2e3f5cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#Change Log

### 1.1.3
* Fix versio number in app.src file

### 1.1.2
* Handle fragmented HTTP messages. In previous version if you tried to decode a fragmented HTTP message with ```wsock_http:decode``` you will run into an error. Now, using [erlang:decode_packet](http://www.erlang.org/doc/man/erlang.html#decode_packet-3), ```wsock_http:decode``` can work around this issue. If you pass a fragmented http message it will return the atom ```fragmendted_http_message```.

Expand Down
2 changes: 1 addition & 1 deletion src/wsock.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application, wsock,
[
{description, "wsock is a library for building WebSocket clients and servers"},
{vsn, "1.1.0"},
{vsn, "1.1.3"},
{registered, []},
{applications, [
kernel,
Expand Down

0 comments on commit 2e3f5cf

Please sign in to comment.