chore(release): 0.2.0

This commit is contained in:
MedzikUser 2022-06-26 13:05:57 +02:00
parent 6430c2577c
commit 40fabbfecf
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
3 changed files with 9 additions and 3 deletions

View File

@ -8,10 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased]
## [0.2.0] - 2022-06-26
### Features
- **plugins**: add `Result<()>` in `fn execute()` (Event and Command traits)
- **websocket**: WS Client <-> TCP Proxy (default port 9998) <-> TCP (default port 9999)
### Chore
- **deps**: upgrade
## [0.1.0] - 2022-06-17
### Default commands
- help
@ -25,5 +30,6 @@ You set custom host and port `./servers --host 0.0.0.0 --port 9999`
Show cli help `./servers --help`
<!-- next-url -->
[Unreleased]: https://github.com/MedzikUser/servers/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/MedzikUser/servers/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/MedzikUser/servers/commits/v0.2.0
[0.1.0]: https://github.com/MedzikUser/servers/commits/v0.1.0

2
Cargo.lock generated
View File

@ -558,7 +558,7 @@ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
[[package]]
name = "servers"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"anyhow",
"async-trait",

View File

@ -4,7 +4,7 @@ members = ["plugin_test"]
[package]
name = "servers"
description = "Simple TCP server for clients written in Rust with plugins support"
version = "0.1.0"
version = "0.2.0"
license = "MIT"
authors = ["MedzikUser <nivua1fn@duck.com>"]
homepage = "https://github.com/MedzikUser/servers"