diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a1211dc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Releases + +- [0.1.1](#011-2022-09-14) (2022-09-14) +- [0.1.0](#010-2022-09-12) (2022-09-12) + + + +# [0.1.1](https://github.com/socketio/socket.io-deno/compare/0.1.0...0.1.1) (2022-09-14) + + +### Bug Fixes + +* disallow duplicate WebSocket connections with same sid ([193a9b5](https://github.com/socketio/socket.io-deno/commit/193a9b5db50e396025d32ac5166be7b5c39c6ddc)) +* disallow mismatching transport ([6b2cc16](https://github.com/socketio/socket.io-deno/commit/6b2cc16a269405f8087b95ea563c0f9b746312bd)) +* prevent crash when using custom headers ([dfe3122](https://github.com/socketio/socket.io-deno/commit/dfe3122865e768ae75e1d4d8c92a47961d708ee9)) +* send a "noop" packet when transport is already closed ([3b1eb82](https://github.com/socketio/socket.io-deno/commit/3b1eb82d1e9e44660b43651dceb05b88bd1b5350)) + + + +# 0.1.0 (2022-09-12) + +This is the first release of this library! diff --git a/README.md b/README.md index 701d226..c4eac12 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Table of content: ```ts import { serve } from "https://deno.land/std@0.150.0/http/server.ts"; -import { Server } from "https://deno.land/x/socket_io@0.1.0/mod.ts"; +import { Server } from "https://deno.land/x/socket_io@0.1.1/mod.ts"; const io = new Server();