Skip to content

Commit b096c4b

Browse files
committed
Auto merge of #268 - kbknapp:inc-ver, r=Vinatorul
chore: increase version
2 parents 313d46a + f21ecf8 commit b096c4b

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
<a name="v1.4.1"></a>
2+
### v1.4.1 (2015-09-22)
3+
4+
5+
#### Examples
6+
7+
* add clap_app quick example ([4ba6249c](https://github.com/kbknapp/clap-rs/commit/4ba6249c3cf4d2e083370d1fe4dcc7025282c28a))
8+
9+
#### Features
10+
11+
* **Unicode:** allows non-panicing on invalid unicode characters ([c5bf7ddc](https://github.com/kbknapp/clap-rs/commit/c5bf7ddc8cfb876ec928a5aaf5591232bbb32e5d))
12+
13+
#### Documentation
14+
15+
* properly names Examples section for rustdoc ([87ba5445](https://github.com/kbknapp/clap-rs/commit/87ba54451d7ec7b1c9b9ef134f90bbe39e6fac69))
16+
* fixes various typos and spelling ([f85640f9](https://github.com/kbknapp/clap-rs/commit/f85640f9f6d8fd3821a40e9b8b7a34fabb789d02))
17+
* **Arg:** unhides fields of the Arg struct ([931aea88](https://github.com/kbknapp/clap-rs/commit/931aea88427edf43a3da90d5a500c1ff2b2c3614))
18+
19+
#### Bug Fixes
20+
21+
* flush the buffer in App::print_version() ([cbc42a37](https://github.com/kbknapp/clap-rs/commit/cbc42a37d212d84d22b1777d08e584ff191934e7))
22+
* Macro benchmarks ([13712da1](https://github.com/kbknapp/clap-rs/commit/13712da1d36dc7614eec3a10ad488257ba615751))
23+
24+
25+
126
<a name="v1.4.0"></a>
227
## v1.4.0 (2015-09-09)
328

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "clap"
4-
version = "1.4.0"
4+
version = "1.4.1"
55
authors = ["Kevin K. <[email protected]>"]
66
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "clap.png"]
77
description = "A simple to use, efficient, and full featured Command Line Argument Parser"

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
3232

3333
## What's New
3434

35-
If you're already familiar with `clap` but just want to see some new highlights as of **1.4.0**
35+
If you're already familiar with `clap` but just want to see some new highlights as of **1.4.1**
3636

37+
* You now have the option to **not** `panic!` on invalid unicode. The `*_safe()` family of `get_matches` will return an `Err` with `ClapErrorType::InvalidUnicode`.
38+
* You have the option to get lossy unicode values. By using the `*_lossy()` versions of the `get_matches` family of methods all invalid unicode will be replaced with `U+FFFD` and **not** `panic!` or fail parsing.
39+
* Some documentation improvements
3740
* A new macro has been designed by [james-darkfox](https://github.com/james-darkfox) to give the simplicity of `from_usage` methods, but the performance of the Builder Pattern. Huge thanks to him! Fair warning this is very new, and may still have some kinks and tweaks left as we experiment ;)
3841
* Users can now print the help message programmatically using `App::write_help(io::Write)` and `App::print_help()`.
3942
* Users can now simply print the error message to `stderr` and exit gracefully programmatically using `ClapError::exit()`

0 commit comments

Comments
 (0)