Skip to content

Commit e72b787

Browse files
committed
prepare actix-web and actix-http-test releases
1 parent efc317d commit e72b787

File tree

8 files changed

+49
-47
lines changed

8 files changed

+49
-47
lines changed

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Changes
22

33
## Unreleased - 2020-xx-xx
4+
5+
6+
## 3.3.0 - 2020-11-25
47
### Added
58
* Add `Either<A, B>` extractor helper. [#1788]
69

710
### Changed
8-
* Upgrade `serde_urlencoded` to `0.7`.
11+
* Upgrade `serde_urlencoded` to `0.7`. [#1773]
912

13+
[#1773]: https://github.com/actix/actix-web/pull/1773
1014
[#1788]: https://github.com/actix/actix-web/pull/1788
1115

1216

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-web"
3-
version = "3.2.0"
3+
version = "3.3.0"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
55
description = "Actix web is a powerful, pragmatic, and extremely fast web framework for Rust"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<p>
77

88
[![crates.io](https://img.shields.io/crates/v/actix-web?label=latest)](https://crates.io/crates/actix-web)
9-
[![Documentation](https://docs.rs/actix-web/badge.svg?version=3.2.0)](https://docs.rs/actix-web/3.2.0)
9+
[![Documentation](https://docs.rs/actix-web/badge.svg?version=3.3.0)](https://docs.rs/actix-web/3.3.0)
1010
[![Version](https://img.shields.io/badge/rustc-1.42+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)
1111
![License](https://img.shields.io/crates/l/actix-web.svg)
12-
[![Dependency Status](https://deps.rs/crate/actix-web/3.2.0/status.svg)](https://deps.rs/crate/actix-web/3.2.0)
12+
[![Dependency Status](https://deps.rs/crate/actix-web/3.3.0/status.svg)](https://deps.rs/crate/actix-web/3.3.0)
1313
<br />
1414
[![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web)
1515
[![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web)

awc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "awc"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
55
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
66
readme = "README.md"

test-server/CHANGES.md

Lines changed: 20 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@
22

33
## Unreleased - 2020-xx-xx
44

5-
* add ability to set address for `TestServer` [#1645]
5+
6+
## 2.1.0 - 2020-11-25
7+
* Add ability to set address for `TestServer`. [#1645]
68
* Upgrade `base64` to `0.13`.
7-
* Upgrade `serde_urlencoded` to `0.7`.
9+
* Upgrade `serde_urlencoded` to `0.7`. [#1773]
810

11+
[#1773]: https://github.com/actix/actix-web/pull/1773
912
[#1645]: https://github.com/actix/actix-web/pull/1645
1013

14+
1115
## 2.0.0 - 2020-09-11
1216
* Update actix-codec and actix-utils dependencies.
1317

18+
1419
## 2.0.0-alpha.1 - 2020-05-23
1520
* Update the `time` dependency to 0.2.7
1621
* Update `actix-connect` dependency to 2.0.0-alpha.2
@@ -20,74 +25,56 @@
2025
* Update `base64` dependency to 0.12
2126
* Update `env_logger` dependency to 0.7
2227

23-
## [1.0.0] - 2019-12-13
24-
25-
### Changed
26-
28+
## 1.0.0 - 2019-12-13
2729
* Replaced `TestServer::start()` with `test_server()`
2830

2931

30-
## [1.0.0-alpha.3] - 2019-12-07
31-
32-
### Changed
33-
32+
## 1.0.0-alpha.3 - 2019-12-07
3433
* Migrate to `std::future`
3534

3635

37-
## [0.2.5] - 2019-09-17
38-
39-
### Changed
40-
36+
## 0.2.5 - 2019-09-17
4137
* Update serde_urlencoded to "0.6.1"
4238
* Increase TestServerRuntime timeouts from 500ms to 3000ms
43-
44-
### Fixed
45-
4639
* Do not override current `System`
4740

4841

49-
## [0.2.4] - 2019-07-18
50-
42+
## 0.2.4 - 2019-07-18
5143
* Update actix-server to 0.6
5244

53-
## [0.2.3] - 2019-07-16
5445

46+
## 0.2.3 - 2019-07-16
5547
* Add `delete`, `options`, `patch` methods to `TestServerRunner`
5648

57-
## [0.2.2] - 2019-06-16
5849

50+
## 0.2.2 - 2019-06-16
5951
* Add .put() and .sput() methods
6052

61-
## [0.2.1] - 2019-06-05
6253

54+
## 0.2.1 - 2019-06-05
6355
* Add license files
6456

65-
## [0.2.0] - 2019-05-12
6657

58+
## 0.2.0 - 2019-05-12
6759
* Update awc and actix-http deps
6860

69-
## [0.1.1] - 2019-04-24
7061

62+
## 0.1.1 - 2019-04-24
7163
* Always make new connection for http client
7264

7365

74-
## [0.1.0] - 2019-04-16
75-
66+
## 0.1.0 - 2019-04-16
7667
* No changes
7768

7869

79-
## [0.1.0-alpha.3] - 2019-04-02
80-
70+
## 0.1.0-alpha.3 - 2019-04-02
8171
* Request functions accept path #743
8272

8373

84-
## [0.1.0-alpha.2] - 2019-03-29
85-
74+
## 0.1.0-alpha.2 - 2019-03-29
8675
* Added TestServerRuntime::load_body() method
87-
8876
* Update actix-http and awc libraries
8977

9078

91-
## [0.1.0-alpha.1] - 2019-03-28
92-
79+
## 0.1.0-alpha.1 - 2019-03-28
9380
* Initial impl

test-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "actix-http-test"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
5-
description = "Actix HTTP test server"
5+
description = "Various helpers for Actix applications to use during testing"
66
readme = "README.md"
77
keywords = ["http", "web", "framework", "async", "futures"]
88
homepage = "https://actix.rs"

test-server/README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
# Actix http test server [![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web) [![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web) [![crates.io](https://meritbadge.herokuapp.com/actix-http-test)](https://crates.io/crates/actix-http-test) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1+
# actix-http-test
22

3-
## Documentation & community resources
3+
> Various helpers for Actix applications to use during testing.
44
5-
* [User Guide](https://actix.rs/docs/)
6-
* [API Documentation](https://docs.rs/actix-http-test/)
7-
* [Chat on gitter](https://gitter.im/actix/actix)
8-
* Cargo package: [actix-http-test](https://crates.io/crates/actix-http-test)
9-
* Minimum supported Rust version: 1.40 or later
5+
[![crates.io](https://img.shields.io/crates/v/actix-http-test?label=latest)](https://crates.io/crates/actix-http-test)
6+
[![Documentation](https://docs.rs/actix-http-test/badge.svg?version=2.1.0)](https://docs.rs/actix-http-test/2.1.0)
7+
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-http-test)
8+
[![Dependency Status](https://deps.rs/crate/actix-http-test/2.1.0/status.svg)](https://deps.rs/crate/actix-http-test/2.1.0)
9+
[![Join the chat at https://gitter.im/actix/actix-web](https://badges.gitter.im/actix/actix-web.svg)](https://gitter.im/actix/actix-web?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
10+
11+
## Documentation & Resources
12+
13+
- [API Documentation](https://docs.rs/actix-http-test)
14+
- [Chat on Gitter](https://gitter.im/actix/actix-web)
15+
- Minimum Supported Rust Version (MSRV): 1.42.0

test-server/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
//! Various helpers for Actix applications to use during testing.
2+
3+
#![deny(rust_2018_idioms)]
4+
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
5+
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
6+
27
use std::sync::mpsc;
38
use std::{net, thread, time};
49

0 commit comments

Comments
 (0)