Bump version to 0.1.4 dev

pull/29/head 0.1.3
Rafał Mikrut 4 years ago
parent 73c8096d2e
commit d34100461e

8
Cargo.lock generated

@ -298,14 +298,14 @@ dependencies = [
[[package]]
name = "czkawka_cli"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"czkawka_core",
]
[[package]]
name = "czkawka_core"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"blake3",
"humansize",
@ -313,7 +313,7 @@ dependencies = [
[[package]]
name = "czkawka_gui"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"chrono",
"czkawka_core",
@ -326,7 +326,7 @@ dependencies = [
[[package]]
name = "czkawka_gui_orbtk"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"czkawka_core",
"orbtk",

@ -1,7 +1,12 @@
## Version 0.1.3
## Version 0.1.4 dev
## Version 0.1.3 - 27.09.2020r
- Big code refactoring - now is a lot of easier create new modules and maintain old ones
- Added finding empty files
- Added new option to find duplicates by checking hash max 1MB of file
- Added support for finding temporary folder finder
- Improved README
- Simplify CLI help and improve it
## Version 0.1.2 - 26.09.2020r
- Add basic search empty folders in GTK GUI

@ -1,6 +1,6 @@
[package]
name = "czkawka_cli"
version = "0.1.3"
version = "0.1.4"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"

@ -1,6 +1,6 @@
[package]
name = "czkawka_core"
version = "0.1.3"
version = "0.1.4"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"

@ -11,4 +11,4 @@ pub mod common_items;
pub mod common_messages;
pub mod common_traits;
pub const CZKAWKA_VERSION: &str = "0.1.3";
pub const CZKAWKA_VERSION: &str = "0.1.4";

@ -1,6 +1,6 @@
[package]
name = "czkawka_gui"
version = "0.1.3"
version = "0.1.4"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"

@ -1,6 +1,6 @@
[package]
name = "czkawka_gui_orbtk"
version = "0.1.3"
version = "0.1.4"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"

Loading…
Cancel
Save