Skip to content

Commit 1b5ca32

Browse files
committed
2.0.0-alpha.0
1 parent 8368e88 commit 1b5ca32

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
## [2.0.0-alpha.0] - 2020-03-02
11+
12+
This is an alpha release in preparation of 2.0.0, so you can start using Surf with stable `futures`. There may be significant breaking changes before the final 2.0 release. Until thin, we recommend pinning to the particular alpha:
13+
14+
```toml
15+
[dependencies]
16+
surf = "= 2.0.0-alpha.0"
17+
```
18+
19+
### Added
20+
21+
- Transcode responses from non-UTF8 charsets.
22+
23+
### Changed
24+
25+
- Updated to use stable `futures`.
26+
- Build on top of [`http-client`](https://github.com/http-rs/http-client).
27+
- Set up an MSRV in CI.
28+
- Stop hitting the network when running tests.
29+
- Reduce copies when parsing URLs.
30+
31+
### Fixed
32+
33+
- Fix syntax errors in the README.md example.
34+
- Fix links in CHANGELOG.md after the org move in 1.0.3.
35+
1036
## [1.0.3] - 2019-11-07
1137

1238
### Changed
@@ -32,6 +58,7 @@ Log not kept.
3258
Log not kept.
3359

3460
[Unreleased]: https://github.com/http-rs/surf/compare/1.0.3...HEAD
61+
[2.0.0-alpha.0]: https://github.com/http-rs/surf/compare/1.0.3...2.0.0-alpha.0
3562
[1.0.3]: https://github.com/http-rs/surf/compare/1.0.2...1.0.3
3663
[1.0.2]: https://github.com/http-rs/surf/compare/1.0.1...1.0.2
3764
[1.0.1]: https://github.com/http-rs/surf/compare/1.0.0...1.0.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "surf"
3-
version = "1.0.3"
3+
version = "2.0.0-alpha.0"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/http-rs/surf"
66
documentation = "https://docs.rs/surf"

0 commit comments

Comments
 (0)