Skip to content

Commit

Permalink
Bumped version to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YM162 committed Jun 1, 2024
1 parent 3f7f8af commit 7dda641
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gulagcleaner_python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_python"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gulagcleaner"
version = "0.13.0"
version = "0.14.0"
description = "Ad removal tool for PDFs."
authors = [
{name = "YM162", email = "[email protected]"}]
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_python/python/gulagcleaner/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main():

# Check for the -v argument
if arguments["version"]:
print("Current version: 0.13.0")
print("Current version: 0.14.0")
return

# Get the pdf_path argument
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_rs"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down
2 changes: 0 additions & 2 deletions gulagcleaner_rs/src/clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ pub trait Cleaner {
///
/// The method code indicates the cleaning method used: 0 for "Wuolah", 1 for "StuDocu", and 2 for "Naive".
pub fn clean_pdf(data: Vec<u8>, force_naive: bool) -> (Vec<u8>, u8) {
//WARNING: FOR THIS RELASE (0.12.0) THE WUOLAH METHOD IS BROKEN.
//I´m working on fixing it, but for now it will be disabled.

//Load the PDF into a Document
let mut doc = Document::load_mem(&data).unwrap();
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_wasm"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down

0 comments on commit 7dda641

Please sign in to comment.