honker 0.3.2 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efe33efe2798b1e536e9ddf93d16d21e7060a1c94d93a9c543d25f0fb016b573
4
- data.tar.gz: 4ff5ce1130b7fbf1d7441e4f4bc5d3b10f3650f101a05a9d33d6aceca4d5982a
3
+ metadata.gz: 8dae25a4f10b6fe9125f3f5f56a0a5e482c17a9c716c58e3ccb785d7bccd2a6b
4
+ data.tar.gz: 996f23893693f8c8a5ca3c47ac1e391ca858efc835e8a0c04229721ecafc50fe
5
5
  SHA512:
6
- metadata.gz: 5a79208cd7cc8f823c19267a13779261967552eb99532eb44c84b7a2ebad8280d6cb90bd00dfe0e52f4fd704f885d4840448e1e3af6330412bd2a88cf7ceb663
7
- data.tar.gz: fc0422c616386da0cb38109d259e9ce5e36f3e844146197201233115c4f07a7045d86c9ede526e4e64daf432ad4bf6378ea948fe4372efcc48f93a65001f99e4
6
+ metadata.gz: ced93ac94928611a6060ae308bf4637d6ff97c33ce8716281f64fa680f128329db7fb22f1a35d9d955f373061e7e705bdfeca670f397335a5771002cb3ab324e
7
+ data.tar.gz: 5efad42d288ad8dffe9bfed6aed633ad2f96dd00dbc5df9dbf310282e9e103eb8d2c8f2746d87b5fcc537e6fbd737b2ec719e60264d4ddaeb57c117c97f834ef
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "honker-core"
3
- version = "0.2.5"
3
+ version = "0.4.0"
4
4
  edition = "2024"
5
5
  description = "Shared Rust foundation for Honker bindings (SQLite loadable extension, PyO3, napi-rs, and friends). Not intended for direct use."
6
6
  license = "MIT OR Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "honker-extension"
3
- version = "0.2.5"
3
+ version = "0.4.0"
4
4
  edition = "2024"
5
5
  description = "SQLite loadable extension for Honker. Adds honker_* SQL functions (queues, streams, scheduler, pub/sub) to any SQLite client."
6
6
  license = "MIT OR Apache-2.0"
@@ -23,7 +23,7 @@ crate-type = ["cdylib"]
23
23
  # Using both `path` and `version` lets Cargo publish this crate to
24
24
  # crates.io referencing the real honker-core = "0.2" while still
25
25
  # using the in-tree source for local builds.
26
- honker-core = { path = "../honker-core", version = "0.2.5", default-features = false }
26
+ honker-core = { path = "../honker-core", version = "0.4.0", default-features = false }
27
27
  # "loadable_extension" feature makes rusqlite usable from inside a
28
28
  # sqlite3_extension_init entry point.
29
29
  rusqlite = { version = "0.39.0", features = ["functions", "hooks", "loadable_extension"] }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Honker
4
- VERSION = "0.3.2"
4
+ VERSION = "0.4.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Russell Romney