Skip to content

Commit

Permalink
version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Oct 8, 2021
1 parent 069c022 commit 5cf0fd4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .gitignore
@@ -1,5 +1,6 @@
/target
build
releases
lfs_*.zip
trav
/build
/releases
/lfs_*.zip
/trav
/deploy.sh
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,5 @@
### next
<a name="v1.1.0"></a>
### v1.1.0 - 2021/10/08
--units launch argument, to choose between SI units or the old binary ones - Fix #17

<a name="v1.0.0"></a>
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lfs"
version = "1.1.0-dev"
version = "1.1.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
edition = "2018"
keywords = ["linux", "filesystem", "fs"]
Expand Down
2 changes: 1 addition & 1 deletion src/fmt_mount.rs
Expand Up @@ -16,7 +16,7 @@ static SIZE_COLOR: u8 = 172;
static BAR_WIDTH: usize = 5;

static MD: &str = r#"
|-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:
|-:|:-:|:-:|:-:|:-:|-:|:-:|:-:|:-|:-
|id|dev|filesystem|disk|type|used|use%|free|size|mount point
|-:|:-|:-|:-:|:-:|-:|-:|-:|:-
${mount-points
Expand Down
2 changes: 1 addition & 1 deletion src/units.rs
@@ -1,7 +1,7 @@


/// The Units system used for sizes
#[derive(Debug, Clone, Copy)]
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Units {
Si, // Units according to the SI system
Binary, // Old binary based units
Expand Down

0 comments on commit 5cf0fd4

Please sign in to comment.