Skip to content

Commit

Permalink
Merge pull request #8 from azriel91/meta/release-0-1-4
Browse files Browse the repository at this point in the history
Meta/release 0 1 4
  • Loading branch information
azriel91 authored Mar 6, 2020
2 parents f556deb + 15c1a8b commit 031d46f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.1.4 (2020-03-07)

* Don't overflow when segment count exceeds `usize::MAX`. ([#7])
* Build `nom` without `"lexical"` feature.

[#7]: https://github.com/azriel91/tynm/pulls/7

## 0.1.3 (2020-01-27)

* Use `unimplemented!` macro instead of `todo!` to support Rust 1.38.0. ([#5])
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tynm"
version = "0.1.3"
version = "0.1.4"
authors = ["Azriel Hoh <azriel91@gmail.com>"]
edition = "2018"
description = "Returns type names in shorter form."
Expand All @@ -11,7 +11,7 @@ keywords = ["typename", "type", "name"]
license = "MIT OR Apache-2.0"

[dependencies]
nom = "5.1.0"
nom = { version = "5.1.1", default-features = false, features = ["std"] }

[dev-dependencies]
pretty_assertions = "0.6.1"
Expand Down

0 comments on commit 031d46f

Please sign in to comment.