Skip to content

Commit

Permalink
🔖 Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePooN committed Oct 19, 2024
1 parent 0d8642d commit 746daa7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Pre-release

## Version 0.12

### Version 0.12.0

- **Support creating lobbies with filtered names by queuing lobby creation**
Created lobbies are no longer checked against their names for the `createLobby` call to succeed. This helps in cases where the requested lobby name has filtered words.
As a consequence, lobby creation can no longer be done in parallel. They are now transparently queued. The promise returned by `createLobby` still resolves when the lobby is created, so this should be fully transparent to the user.
- **Fix infinite loop when message fails to send**
- BanchoChannel: Fix join and leave methods hanging forever if channel is already joined/left
- BanchoChannel: Fix JOIN and PART events being emitted before they're fully processed
- Fix slots types not being nullable

## Version 0.11

### Version 0.11.6
Expand Down Expand Up @@ -376,4 +388,4 @@

## Version 0.1

- Initial single-file library with very basic IRC support
- Initial single-file library with very basic IRC support
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![NPM](https://nodei.co/npm/bancho.js.png?compact=true)](https://nodei.co/npm/bancho.js/)
[![pipeline status](https://git.cartooncraft.fr/ThePooN/bancho.js/badges/master/pipeline.svg)](https://git.cartooncraft.fr/ThePooN/bancho.js/commits/master)

## Current release: 0.11.6
## Current release: 0.12.0

# Introduction

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bancho.js",
"version": "0.11.6",
"version": "0.12.0",
"description": "Interface with Bancho over IRC, made easy and reliable",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 746daa7

Please sign in to comment.