Skip to content

Commit

Permalink
Release 0.9.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ark0f authored Feb 26, 2024
1 parent 4e64910 commit 13bdbf0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- run: sudo dpkg -i *.deb
- run: nohup cat .github/workflows/proxy.cfg | 3proxy &
- run: cargo install grcov
- uses: allenevans/set-env@v2.0.0
- uses: allenevans/set-env@v3.0.0
with:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: >-
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,58 +1,79 @@
Format: # vX.X.X (YYYY-MM-DD)

# v0.9.0 (2024-02-26)

Update MSRV to 1.75.0 and dependencies

# v0.8.0 (2023-04-16)

Update `rustls` dependencies

# v0.7.0 (2022-09-23)

* Update major version of rustls

# v0.6.0 (2021-01-01)

* Update to hyper `0.14`
* Add `with_rustls_root_cert_store` method to use already existing cert store

# v0.5.0 (2020-10-25)

* Update `rustls` dependencies
* Fix issue #3

# v0.4.3 (2020-05-12)

Add `rustls` support

# v0.4.2 (2020-01-08)

Fix when library doesn't compile without `tls` feature

# v0.4.1 (2020-01-07)

Fix when connector's `poll_ready` is not called

# v0.4.0 (2020-01-06)

Now you can use any connector for more flexibility

# v0.3.0 (2020-01-04)

Add `async`/`.await` support

# v0.2.1 (2019-02-10)

Added 'Eq' and 'PartialEq' derives

# v0.2.0 (2019-01-10)

* Updated docs
* Simplified API

# v0.1.5 (2019-01-09)

* Updated docs
* Added 'Clone' derive
* Added TLS feature

# v0.1.4 (2018-12-22)

Added 'Debug' derive

# v0.1.3 (2018-12-22)

* Updated docs
* Disabled HTTP/1 forcing

# v0.1.2 (2018-12-17)

Renamed 'hyper-socks' to 'hyper-socks2'

# v0.1.1 (2018-12-17)

Added licenses

# v0.1.0 (2018-12-17)

Initial commit
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyper-socks2"
version = "0.8.0"
version = "0.9.0"
authors = ["Arsenii Lyashenko <arsenylyashenko.3@gmail.com>"]
license = "Apache-2.0 OR MIT"
description = "A SOCKS5 connector for hyper library"
Expand All @@ -10,20 +10,21 @@ readme = "README.md"
keywords = ["hyper", "network", "ssl", "tls"]
categories = ["authentication", "network-programming", "web-programming::http-client"]
include = ["Cargo.toml", "LICENSE-*.md", "src/**/*"]
edition = "2018"
edition = "2021"

[badges]
github-actions = { repository = "https://github.com/ark0f/hyper-socks2", workflow = "CI" }

[dependencies]
hyper = "1"
async-socks5 = "0.5"
async-socks5 = "0.6"
futures = "0.3"
tokio = "1.0"
thiserror = "1.0"
http = "1"
tower-service = "0.3"
hyper-util = { version = "0.1", features = ["tokio"] }

# `tls` feature
hyper-tls = { version = "0.6", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# hyper-socks2
[![Build Status](https://img.shields.io/github/workflow/status/ark0f/hyper-socks2/CI)](https://github.com/ark0f/hyper-socks2/actions/)
[![Build Status](https://img.shields.io/github/actions/workflow/status/ark0f/hyper-socks2/ci.yml?branch=master)](https://github.com/ark0f/hyper-socks2/actions/)
![License](https://img.shields.io/crates/l/hyper-socks2.svg)
[![crates.io](https://img.shields.io/crates/v/hyper-socks2.svg)](https://crates.io/crates/hyper-socks2)
[![API docs](https://docs.rs/hyper-socks2/badge.svg)](https://docs.rs/hyper-socks2)
Expand Down

0 comments on commit 13bdbf0

Please sign in to comment.