Skip to content

Commit

Permalink
prepare beta.1 release for multipart/files/actors (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Jul 16, 2020
1 parent ad7c6d2 commit 2fd96c0
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
5 changes: 3 additions & 2 deletions actix-files/CHANGES.md
@@ -1,11 +1,12 @@
# Changes

## [unreleased] - xxx
## [Unreleased] - 2020-xx-xx

## [0.3.0-beta.1] - 2020-07-15
* Update `v_htmlescape` to 0.10
* Update `actix-web` and `actix-http` dependencies to beta.1

## [0.3.0-alpha.1] - 2020-05-23

* Update `actix-web` and `actix-http` dependencies to alpha
* Fix some typos in the docs
* Bump minimum supported Rust version to 1.40
Expand Down
8 changes: 4 additions & 4 deletions actix-files/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-files"
version = "0.3.0-alpha.1"
version = "0.3.0-beta.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Static files support for actix web."
readme = "README.md"
Expand All @@ -17,8 +17,8 @@ name = "actix_files"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "3.0.0-alpha.3", default-features = false }
actix-http = "2.0.0-alpha.4"
actix-web = { version = "3.0.0-beta.1", default-features = false }
actix-http = "2.0.0-beta.1"
actix-service = "1.0.1"
bitflags = "1"
bytes = "0.5.3"
Expand All @@ -33,4 +33,4 @@ v_htmlescape = "0.10"

[dev-dependencies]
actix-rt = "1.0.0"
actix-web = { version = "3.0.0-alpha.3", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.1", features = ["openssl"] }
12 changes: 7 additions & 5 deletions actix-multipart/CHANGES.md
@@ -1,15 +1,17 @@
# Changes

## [0.3.0-alpha.1] - 2020-05-25
## Unreleased - 2020-xx-xx

* Update `actix-web` to 3.0.0-alpha.3

* Bump minimum supported Rust version to 1.40
## 0.3.0-beta.1 - 2020-07-15
* Update `actix-web` to 3.0.0-beta.1

* Minimize `futures` dependencies

## 0.3.0-alpha.1 - 2020-05-25
* Update `actix-web` to 3.0.0-alpha.3
* Bump minimum supported Rust version to 1.40
* Minimize `futures` dependencies
* Remove the unused `time` dependency

* Fix missing `std::error::Error` implement for `MultipartError`.

## [0.2.0] - 2019-12-20
Expand Down
6 changes: 3 additions & 3 deletions actix-multipart/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-multipart"
version = "0.3.0-alpha.1"
version = "0.3.0-beta.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Multipart support for actix web framework."
readme = "README.md"
Expand All @@ -16,7 +16,7 @@ name = "actix_multipart"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "3.0.0-alpha.3", default-features = false }
actix-web = { version = "3.0.0-beta.1", default-features = false }
actix-service = "1.0.1"
actix-utils = "1.0.3"
bytes = "0.5.3"
Expand All @@ -29,4 +29,4 @@ twoway = "0.2"

[dev-dependencies]
actix-rt = "1.0.0"
actix-http = "2.0.0-alpha.4"
actix-http = "2.0.0-beta.1"
5 changes: 4 additions & 1 deletion actix-web-actors/CHANGES.md
Expand Up @@ -2,10 +2,13 @@

## [Unreleased] - 2020-xx-xx


## [3.0.0-beta.1] - 2020-xx-xx
* Update `actix-web` & `actix-http` dependencies to beta.1
* Bump minimum supported Rust version to 1.40

## [3.0.0-alpha.1] - 2020-05-08

## [3.0.0-alpha.1] - 2020-05-08
* Update the actix-web dependency to 3.0.0-alpha.1
* Update the actix dependency to 0.10.0-alpha.2
* Update the actix-http dependency to 2.0.0-alpha.3
Expand Down
6 changes: 3 additions & 3 deletions actix-web-actors/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-web-actors"
version = "3.0.0-alpha.1"
version = "3.0.0-beta.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix actors support for actix web framework."
readme = "README.md"
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"

[dependencies]
actix = "0.10.0-alpha.2"
actix-web = { version = "3.0.0-alpha.3", default-features = false }
actix-http = "2.0.0-alpha.4"
actix-web = { version = "3.0.0-beta.1", default-features = false }
actix-http = "2.0.0-beta.1"
actix-codec = "0.2.0"
bytes = "0.5.2"
futures-channel = { version = "0.3.5", default-features = false }
Expand Down

0 comments on commit 2fd96c0

Please sign in to comment.