Skip to content

Commit

Permalink
upgrade edn; ABI version 0.0.9 ; tag 0.8.52
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed May 19, 2024
1 parent b77e35a commit c02708b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "calcit"
version = "0.8.51"
version = "0.8.52"
authors = ["jiyinyiyong <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -20,7 +20,7 @@ exclude = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cirru_edn = "0.6.5"
cirru_edn = "0.6.6"
# cirru_edn = { path = "/Users/chenyong/repo/cirru/edn.rs" }
cirru_parser = "0.1.29"
# cirru_parser = { path = "/Users/chenyong/repo/cirru/parser.rs" }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@calcit/procs",
"version": "0.8.51",
"version": "0.8.52",
"main": "./lib/calcit.procs.mjs",
"devDependencies": {
"@types/node": "^20.11.28",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/injection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn load_dylib(lib_name: &str) -> Arc<libloading::Library> {
dylibs.get(lib_name).unwrap().to_owned()
}

const ABI_VERSION: &str = "0.0.8";
const ABI_VERSION: &str = "0.0.9";

pub fn inject_platform_apis() {
builtins::register_import_proc("&call-dylib-edn", call_dylib_edn);
Expand Down
2 changes: 1 addition & 1 deletion src/util/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub fn extract_ns_def(s: &str) -> Result<(String, String), String> {
pub fn extract_pkg_from_ns(ns: Arc<str>) -> Option<Arc<str>> {
let p2: Vec<&str> = ns.split('.').collect();
if !p2.is_empty() {
Some(p2[0].to_owned().into())
Some(p2[0].into())
} else {
None
}
Expand Down

0 comments on commit c02708b

Please sign in to comment.