From 4837a901e2c2d3ced41c14ac9a09b492c0192ef9 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 25 Sep 2019 10:35:15 +0600 Subject: [PATCH] prepare actix-server release --- CHANGES.md | 69 ----------------------------------------- actix-server/CHANGES.md | 7 +++++ actix-server/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 70 deletions(-) delete mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md deleted file mode 100644 index 51e019e7..00000000 --- a/CHANGES.md +++ /dev/null @@ -1,69 +0,0 @@ -# Changes - -## [0.3.0] - xxx - -* Split `Service` trait to separate crate - -* Use new `Service` trait - -* Add UDS listening support to `ServerBuilder` - -## [0.2.4] - 2018-11-21 - -### Added - -* Allow to skip name resolution stage in Connector - - -## [0.2.3] - 2018-11-17 - -### Added - -* Framed::is_write_buf_empty() checks if write buffer is flushed - -## [0.2.2] - 2018-11-14 - -### Added - -* Add low/high caps to Framed - -### Changed - -* Refactor Connector and Resolver services - - -### Fixed - -* Fix wrong service to socket binding - - -## [0.2.0] - 2018-11-08 - -### Added - -* Timeout service - -* Added ServiceConfig and ServiceRuntime for server service configuration - - -### Changed - -* Connector has been refactored - -* timer and LowResTimer renamed to time and LowResTime - -* Refactored `Server::configure()` method - - -## [0.1.1] - 2018-10-10 - -### Changed - -- Set actix min version - 0.7.5 - -- Set trust-dns min version - - -## [0.1.0] - 2018-10-08 - -* Initial impl diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 9094f5ff..6ab3bcc9 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [0.6.1] - 2019-09-25 + +### Added + +* Add UDS listening support to `ServerBuilder` + + ## [0.6.0] - 2019-07-18 ### Added diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index c7c40820..2bda582a 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-server" -version = "0.6.0" +version = "0.6.1" authors = ["Nikolay Kim "] description = "Actix server - General purpose tcp server" keywords = ["network", "framework", "async", "futures"]