Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDing committed Apr 19, 2022
1 parent 74c0ace commit fe2d469
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.4.0 - 2022-04-19

### Updated

- Update dependencies.

### Changed

- No dependency on `OpenSSL`, using `rustls`.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<h1 align="center">Aget-rs - Fast Asynchronous Downloader with Rust 🦀</h1>

[![Build Status](https://travis-ci.org/PeterDing/aget-rs.svg?branch=master)](https://travis-ci.org/PeterDing/aget-rs)
[![Appveyor Status](https://ci.appveyor.com/api/projects/status/e1g5lxvlo3duirk4?svg=true)](https://ci.appveyor.com/project/PeterDing/aget-rs)
[![CI](https://github.com/PeterDing/aget-rs/actions/workflows/ci.yml/badge.svg)](https://github.com/PeterDing/aget-rs/actions/workflows/ci.yml)

`aget-rs` is a fast asynchronous downloader wrote with Rust.
It requests a resource with a number of concurrent asynchronous request in a single thread.
Expand Down
6 changes: 5 additions & 1 deletion src/arguments/clap_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ pub struct AgetCli {
)]
pub method: String,

#[clap(short, long, help = r#"Request headers, e.g. -H "User-Agent: aget""#)]
#[clap(
short = 'H',
long,
help = r#"Request headers, e.g. -H "User-Agent: aget""#
)]
pub header: Option<Vec<String>>,

#[clap(
Expand Down

0 comments on commit fe2d469

Please sign in to comment.