Skip to content

Commit

Permalink
chore(release): 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Sep 14, 2022
1 parent c8c48a4 commit ead0b42
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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!
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit ead0b42

Please sign in to comment.