Release 0.2.0

This commit is contained in:
Xavier Moffett 2023-09-28 23:27:37 -04:00
parent 7d182d860b
commit cf41d54420
3 changed files with 4 additions and 5 deletions

2
Cargo.lock generated
View File

@ -4,4 +4,4 @@ version = 3
[[package]] [[package]]
name = "simplebyteunit" name = "simplebyteunit"
version = "0.1.0" version = "0.2.0"

View File

@ -1,10 +1,9 @@
[package] [package]
name = "simplebyteunit" name = "simplebyteunit"
authors = ["Xavier R.M."] authors = ["Xavier R.M."]
version = "0.1.1" version = "0.2.0"
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"
repository = "https://github.com/sapphirusberyl/simplebyteunit" repository = "https://github.com/sapphirusberyl/simplebyteunit"
license = "Apache-2.0" license = "Apache-2.0"
license-file = "LICENSE"
description = "A thin encapsulate for integer primitives to facilitate a fast, simple, yet ergonomic byteunit implementation." description = "A thin encapsulate for integer primitives to facilitate a fast, simple, yet ergonomic byteunit implementation."

View File

@ -8,7 +8,7 @@ Add 'simplebyteunit' to your 'Cargo.toml':
``` ```
[dependencies] [dependencies]
simplebyteunit = "0.1.0" simplebyteunit = "0.2.0"
``` ```
## Example ## Example
@ -26,5 +26,5 @@ println!("{byteunit_var}");
Output: Output:
``` ```
500 KB 500 kB
``` ```