diff --git a/actix-service/CHANGES.md b/actix-service/CHANGES.md index 7a7c4070..65b8aa48 100644 --- a/actix-service/CHANGES.md +++ b/actix-service/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.3.0] - 2019-02-xx +## [0.3.0] - 2019-03-02 ## Added @@ -8,7 +8,9 @@ ## Changed -* Added `Config` argument to `NewService` trait. +* Added `Config` parameter to `NewService` trait. + +* Added `Config` parameter to `NewTransform` trait. ## [0.2.2] - 2019-02-19 diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index b50d5ed0..acac7f0e 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-service" -version = "0.2.2" +version = "0.3.0" authors = ["Nikolay Kim "] description = "Actix Service" keywords = ["network", "framework", "async", "futures"] @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] license = "MIT/Apache-2.0" exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] edition = "2018" -workspace = "../" +workspace = ".." [badges] travis-ci = { repository = "actix/actix-service", branch = "master" }