Skip to content

Commit

Permalink
build: bump version up
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Sep 11, 2024
1 parent bcac745 commit 5f164ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bindings/extractous-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ homepage = "https://extractous.yobix.ai/"
license = "Apache-2.0"
repository = "https://github.com/yobix-ai/extractous"
rust-version = "1.75"
version = "0.1.0"
version = "0.1.3"


[lib]
Expand Down
2 changes: 1 addition & 1 deletion bindings/extractous-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "extractous"
version = '0.1.2'
version = '0.1.3'
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
Expand Down
2 changes: 1 addition & 1 deletion extractous-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extractous"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

description = """
Expand Down
4 changes: 1 addition & 3 deletions extractous-core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ use std::path::{Path, PathBuf};
use std::process::Command;

fn main() {
let docs_rs = env::var("DOCS_RS");
println!("cargo:warning=DOCS_RS: {:?}", docs_rs);
// Exit early when building docs or when running clippy
if env::var("DOCS_RS").is_ok() {
return;
Expand Down Expand Up @@ -282,4 +280,4 @@ pub fn install_graalvm_ce(install_dir: &PathBuf) -> PathBuf {
}

install_dir.join(main_dir)
}
}

0 comments on commit 5f164ea

Please sign in to comment.