Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions actix-ws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.3.1

- enable actix-web's `ws` feature explicitly.
- Ensure TCP connection is properly shut down when session is dropped.

## 0.3.0
Expand Down
2 changes: 1 addition & 1 deletion actix-ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-ws"
version = "0.3.0"
version = "0.3.1"
description = "WebSockets for Actix Web, without actors"
categories = ["web-programming::websocket"]
keywords = ["actix", "web", "websocket", "websockets", "streaming"]
Expand Down
4 changes: 2 additions & 2 deletions actix-ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<!-- prettier-ignore-start -->

[![crates.io](https://img.shields.io/crates/v/actix-ws?label=latest)](https://crates.io/crates/actix-ws)
[![Documentation](https://docs.rs/actix-ws/badge.svg?version=0.3.0)](https://docs.rs/actix-ws/0.3.0)
[![Documentation](https://docs.rs/actix-ws/badge.svg?version=0.3.1)](https://docs.rs/actix-ws/0.3.1)
![Version](https://img.shields.io/badge/rustc-1.82+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-ws.svg)
<br />
[![Dependency Status](https://deps.rs/crate/actix-ws/0.3.0/status.svg)](https://deps.rs/crate/actix-ws/0.3.0)
[![Dependency Status](https://deps.rs/crate/actix-ws/0.3.1/status.svg)](https://deps.rs/crate/actix-ws/0.3.1)
[![Download](https://img.shields.io/crates/d/actix-ws.svg)](https://crates.io/crates/actix-ws)
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)

Expand Down
Loading