Skip to content

Commit

Permalink
0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Feb 21, 2022
1 parent 885a263 commit feba75a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# `linya` Changelog

## 0.2.2 (2022-02-21)

#### Fixed

- An overflow panic that affected certain hardware with a comparatively small `usize::MAX`.

## 0.2.1 (2021-06-12)

#### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linya"
version = "0.2.1"
version = "0.2.2"
authors = ["Colin Woodbury <[email protected]>"]
edition = "2021"
description = "Simple concurrent progress bars."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
//! [indicatif]: https://lib.rs/crates/indicatif
#![warn(missing_docs)]
#![doc(html_root_url = "https://docs.rs/linya/0.2.1")]
#![doc(html_root_url = "https://docs.rs/linya/0.2.2")]

use std::io::{LineWriter, Stderr, Write};
use terminal_size::{terminal_size, Height, Width};
Expand Down

0 comments on commit feba75a

Please sign in to comment.