Skip to content

Commit

Permalink
alpha.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Apr 3, 2019
1 parent 19eef36 commit 442f505
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ script:
after_success:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
cargo doc --all-features &&
cargo doc --no-deps --all-features &&
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
git clone https://github.com/davisp/ghp-import.git &&
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc &&
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changes

## [1.0.0-alpha.3] - 2019-04-02

### Changed

* Renamed `TestRequest::to_service()` to `TestRequest::to_srv_request()`
Expand All @@ -8,7 +10,6 @@

* Removed `Deref` impls


### Removed

* Removed unused `actix_web::web::md()`
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
readme = "README.md"
Expand Down Expand Up @@ -72,11 +72,11 @@ actix-utils = "0.3.4"
actix-router = "0.1.0"
actix-rt = "0.2.2"
actix-web-codegen = "0.1.0-alpha.1"
actix-http = { version = "0.1.0-alpha.2", features=["fail"] }
actix-http = { version = "0.1.0-alpha.3", features=["fail"] }
actix-server = "0.4.2"
actix-server-config = "0.1.0"
actix-threadpool = "0.1.0"
awc = { version = "0.1.0-alpha.2", optional = true }
awc = { version = "0.1.0-alpha.3", optional = true }

bytes = "0.4"
derive_more = "0.14"
Expand All @@ -101,8 +101,8 @@ openssl = { version="0.10", optional = true }
rustls = { version = "^0.15", optional = true }

[dev-dependencies]
actix-http = { version = "0.1.0-alpha.2", features=["ssl", "brotli", "flate2-zlib"] }
actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-http = { version = "0.1.0-alpha.3", features=["ssl", "brotli", "flate2-zlib"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
rand = "0.6"
env_logger = "0.6"
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion actix-files/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.1.0-alpha.2] - 2019-04-xx
## [0.1.0-alpha.2] - 2019-04-02

* Add default handler support

Expand Down
4 changes: 2 additions & 2 deletions actix-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name = "actix_files"
path = "src/lib.rs"

[dependencies]
actix-web = "1.0.0-alpha.2"
actix-web = "1.0.0-alpha.3"
actix-service = "0.3.4"
bitflags = "1"
bytes = "0.4"
Expand All @@ -31,4 +31,4 @@ percent-encoding = "1.0"
v_htmlescape = "0.4"

[dev-dependencies]
actix-web = { version = "1.0.0-alpha.2", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.3", features=["ssl"] }
6 changes: 5 additions & 1 deletion actix-http/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changes

## [0.1.0-alpha.3] - 2019-04-xx
## [0.1.0-alpha.3] - 2019-04-02

### Added

* Warn when an unsealed private cookie isn't valid UTF-8

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions actix-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-http"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix http primitives"
readme = "README.md"
Expand Down Expand Up @@ -100,7 +100,7 @@ openssl = { version="0.10", optional = true }
actix-rt = "0.2.2"
actix-server = { version = "0.4.1", features=["ssl"] }
actix-connect = { version = "0.1.0", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
env_logger = "0.6"
serde_derive = "1.0"
openssl = { version="0.10" }
Expand Down
4 changes: 4 additions & 0 deletions actix-session/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.1.0-alpha.3] - 2019-04-02

* Update actix-web

## [0.1.0-alpha.2] - 2019-03-29

* Update actix-web
Expand Down
4 changes: 2 additions & 2 deletions actix-session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-session"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Session for actix web framework."
readme = "README.md"
Expand All @@ -24,7 +24,7 @@ default = ["cookie-session"]
cookie-session = ["actix-web/secure-cookies"]

[dependencies]
actix-web = "1.0.0-alpha.2"
actix-web = "1.0.0-alpha.3"
actix-service = "0.3.4"
bytes = "0.4"
derive_more = "0.14"
Expand Down
4 changes: 4 additions & 0 deletions actix-web-actors/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.1.0-alpha.3] - 2019-04-02

* Update actix-http and actix-web

## [0.1.0-alpha.2] - 2019-03-29

* Update actix-http and actix-web
Expand Down
8 changes: 4 additions & 4 deletions actix-web-actors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-web-actors"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix actors support for actix web framework."
readme = "README.md"
Expand All @@ -19,12 +19,12 @@ path = "src/lib.rs"

[dependencies]
actix = "0.8.0-alpha.2"
actix-web = "1.0.0-alpha.2"
actix-http = "0.1.0-alpha.2"
actix-web = "1.0.0-alpha.3"
actix-http = "0.1.0-alpha.3"
actix-codec = "0.1.2"
bytes = "0.4"
futures = "0.1.25"

[dev-dependencies]
env_logger = "0.6"
actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
2 changes: 1 addition & 1 deletion actix-web-actors/src/ws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub use actix_http::ws::{
use actix_web::dev::HttpResponseBuilder;
use actix_web::error::{Error, ErrorInternalServerError, PayloadError};
use actix_web::http::{header, Method, StatusCode};
use actix_web::{HttpMessage, HttpRequest, HttpResponse};
use actix_web::{HttpRequest, HttpResponse};
use bytes::{Bytes, BytesMut};
use futures::sync::oneshot::Sender;
use futures::{Async, Future, Poll, Stream};
Expand Down
3 changes: 1 addition & 2 deletions awc/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Changes


## [0.1.0-alpha.3] - 2019-04-xx
## [0.1.0-alpha.3] - 2019-04-02

### Added

Expand Down
10 changes: 5 additions & 5 deletions awc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "awc"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix http client."
readme = "README.md"
Expand Down Expand Up @@ -38,7 +38,7 @@ flate2-rust = ["actix-http/flate2-rust"]
[dependencies]
actix-codec = "0.1.1"
actix-service = "0.3.4"
actix-http = "0.1.0-alpa.2"
actix-http = "0.1.0-alpa.3"
base64 = "0.10.1"
bytes = "0.4"
derive_more = "0.14"
Expand All @@ -55,9 +55,9 @@ openssl = { version="0.10", optional = true }

[dev-dependencies]
actix-rt = "0.2.2"
actix-web = { version = "1.0.0-alpha.2", features=["ssl"] }
actix-http = { version = "0.1.0-alpa.2", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.3", features=["ssl"] }
actix-http = { version = "0.1.0-alpa.3", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
actix-utils = "0.3.4"
actix-server = { version = "0.4.1", features=["ssl"] }
brotli2 = { version="0.3.2" }
Expand Down
5 changes: 5 additions & 0 deletions test-server/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## [0.1.0-alpha.3] - 2019-04-02

* Request functions accept path #743


## [0.1.0-alpha.2] - 2019-03-29

* Added TestServerRuntime::load_body() method
Expand Down
8 changes: 4 additions & 4 deletions test-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-http-test"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix http test server"
readme = "README.md"
Expand Down Expand Up @@ -35,7 +35,7 @@ actix-rt = "0.2.1"
actix-service = "0.3.4"
actix-server = "0.4.0"
actix-utils = "0.3.4"
awc = "0.1.0-alpha.2"
awc = "0.1.0-alpha.3"

base64 = "0.10"
bytes = "0.4"
Expand All @@ -55,5 +55,5 @@ tokio-timer = "0.2"
openssl = { version="0.10", optional = true }

[dev-dependencies]
actix-web = "1.0.0-alpa.2"
actix-http = "0.1.0-alpa.2"
actix-web = "1.0.0-alpa.3"
actix-http = "0.1.0-alpa.3"

0 comments on commit 442f505

Please sign in to comment.