Skip to content

Commit e2567a5

Browse files
committed
Bump version to 0.5.4
1 parent 4946516 commit e2567a5

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
0.5.3
1+
0.5.4
22
=====
33

4-
Add LICENSE file to distribution
4+
* Add LICENSE file to distribution
5+
6+
* Add AUR installation info
57

68
0.5.2
79
=====

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lowcharts"
3-
version = "0.5.2"
3+
version = "0.5.4"
44
authors = ["JuanLeon Lahoz <[email protected]>"]
55
edition = "2018"
66
description = "Tool to draw low-resolution graphs in terminal"

src/read/dateparser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl LogDateParser {
4242
// of the "supported" formats (so that we do not lose precision digits
4343
// or TZ info).
4444
for (i, c) in log_line.chars().enumerate() {
45-
if c.is_digit(10) {
45+
if c.is_ascii_digit() {
4646
for j in (i..(i + MAX_LEN).min(log_line.len() + 1)).rev() {
4747
if let Some(parser) = Self::guess_parser(&log_line[i..j]) {
4848
return Ok(LogDateParser {

0 commit comments

Comments
 (0)