Skip to content

Commit

Permalink
publish bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Arruda committed Oct 16, 2023
1 parent 15dfe0a commit 3cef875
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ryan-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ doc = false
anyhow = "1.0.69"
atty = "0.2.14"
clap = { version = "4.1.6", features = ["derive"] }
# ryan = "0.2.2"
ryan = { path = "../ryan" }
ryan = "0.2.3"
# ryan = { path = "../ryan" }
serde_json = "1.0.93"
termcolor = "1.2.0"
termcolor-json = "1.0.0"
2 changes: 1 addition & 1 deletion ryan-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ console_error_panic_hook = { version = "0.1.7", optional = true }
wee_alloc = { version = "0.4.5", optional = true }

# Ryan!!
ryan = "0.2.2"
ryan = "0.2.3"
# ryan = { path = "../ryan" }
js-sys = "0.3.61"
thiserror = "1.0.38"
Expand Down
4 changes: 2 additions & 2 deletions ryan-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ryan-python"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
authors = ["Pedro Bittencorut Arruda <[email protected]>"]
description = "Ryan: a configuration language for the practical programmer"
Expand All @@ -20,5 +20,5 @@ crate-type = ["staticlib"]

[dependencies]
pyo3 = { version = "0.18.1", features = ["extension-module"] }
ryan = "0.2.2"
ryan = "0.2.3"
# ryan = { path = "../ryan" }
2 changes: 1 addition & 1 deletion ryan-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "ryan-lang"
version = "0.2.3"
version = "0.2.4"
requires-python = ">=3.7"
description = "Ryan: a configuration language for the practical programmer"
readme = "readme.md"
Expand Down
2 changes: 2 additions & 0 deletions ryan-python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,7 @@ pub fn ryan(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
ryan_to_python(py, &value)
}

m.add("__version__", env!("CARGO_PKG_VERSION"))?;

Ok(())
}
2 changes: 1 addition & 1 deletion ryan-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ console_error_panic_hook = { version = "0.1.7", optional = true }
wee_alloc = { version = "0.4.5", optional = true }

# Ryan!!
ryan = "0.2.2"
ryan = "0.2.3"
# ryan = { path = "../ryan" }
js-sys = "0.3.61"
thiserror = "1.0.38"
Expand Down

0 comments on commit 3cef875

Please sign in to comment.