From cf41d54420a0fbb90dff7aeccc453f7e24c5ffcd Mon Sep 17 00:00:00 2001 From: Xavier Date: Thu, 28 Sep 2023 23:27:37 -0400 Subject: [PATCH] Release 0.2.0 --- Cargo.lock | 2 +- Cargo.toml | 3 +-- README.md | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 904aa1f..ac3d38c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "simplebyteunit" -version = "0.1.0" +version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 0f20c35..af5eba8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,9 @@ [package] name = "simplebyteunit" authors = ["Xavier R.M."] -version = "0.1.1" +version = "0.2.0" edition = "2021" readme = "README.md" repository = "https://github.com/sapphirusberyl/simplebyteunit" license = "Apache-2.0" -license-file = "LICENSE" description = "A thin encapsulate for integer primitives to facilitate a fast, simple, yet ergonomic byteunit implementation." diff --git a/README.md b/README.md index 22af913..6adeebc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add 'simplebyteunit' to your 'Cargo.toml': ``` [dependencies] -simplebyteunit = "0.1.0" +simplebyteunit = "0.2.0" ``` ## Example @@ -26,5 +26,5 @@ println!("{byteunit_var}"); Output: ``` -500 KB +500 kB ```