Skip to content

Commit feba75a

Browse files
committed
0.2.2
1 parent 885a263 commit feba75a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# `linya` Changelog
22

3+
## 0.2.2 (2022-02-21)
4+
5+
#### Fixed
6+
7+
- An overflow panic that affected certain hardware with a comparatively small `usize::MAX`.
8+
39
## 0.2.1 (2021-06-12)
410

511
#### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linya"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Colin Woodbury <colin@fosskers.ca>"]
55
edition = "2021"
66
description = "Simple concurrent progress bars."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
//! [indicatif]: https://lib.rs/crates/indicatif
9595
9696
#![warn(missing_docs)]
97-
#![doc(html_root_url = "https://docs.rs/linya/0.2.1")]
97+
#![doc(html_root_url = "https://docs.rs/linya/0.2.2")]
9898

9999
use std::io::{LineWriter, Stderr, Write};
100100
use terminal_size::{terminal_size, Height, Width};

0 commit comments

Comments
 (0)