From 40fabbfecfaa88f0cec1242757298b677bbca93a Mon Sep 17 00:00:00 2001 From: MedzikUser Date: Sun, 26 Jun 2022 13:05:57 +0200 Subject: [PATCH] chore(release): 0.2.0 --- CHANGELOG.md | 8 +++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19457fc..74df100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [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` -[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 diff --git a/Cargo.lock b/Cargo.lock index efd9ec5..f2c1524 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -558,7 +558,7 @@ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" [[package]] name = "servers" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index c192279..04c20bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] homepage = "https://github.com/MedzikUser/servers"