Skip to content

Commit

Permalink
bump 2.0.0 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Feb 14, 2022
1 parent 1c4da1d commit f9f9a29
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.0.0

** Features: **
* [socket_io_common#5](https://github.com/rikulo/socket_io_common/pull/5) Added listening any event functionality

## 2.0.0-beta.1-nullsafety.1

**Bug fix:**
Expand Down
1 change: 1 addition & 0 deletions lib/src/util/event_emitter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class EventEmitter {

/**
* This function attempts to unbind the [handler].
* If the given [handler] is null, this function unbinds all any event handlers.
*/
void offAny([AnyEventHandler? handler]) {
if (handler != null) {
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: socket_io_common
description: Socket.io common parser library.
version: 2.0.0-beta.1-nullsafety.1
version: 2.0.0
homepage: https://www.zkoss.org
repository: https://github.com/rikulo/socket_io_common
issue_tracker: https://github.com/rikulo/socket_io_common/issues

environment:
sdk: '>=2.12.0-0 <3.0.0'
sdk: '>=2.12.0 <3.0.0'

dependencies:
logging: '^1.0.0-nullsafety.0'
logging: '^1.0.1'

0 comments on commit f9f9a29

Please sign in to comment.