tasker-rb 0.1.3 → 0.1.4

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: 48bc565fc5b7dc34cb72b779fda4564b97702cd5b38974e1cdfc871278cd57a8
4
- data.tar.gz: 320ebed3cf7dcad32306591a6532ee6cc36428c058dbe413ca0e0848938b178c
3
+ metadata.gz: 5b7af121276f9cd8450b5b9103799943663563f92b50771428b88dff58c7904a
4
+ data.tar.gz: cd3f52b4a01f2db907f753cb249655debe026f2921ecf93e06cef73ef137f5cb
5
5
  SHA512:
6
- metadata.gz: e7a0606f97fd3acb3d4b98c44c5ed94d651137df0e7d04ea16755f15de8dd91ba88de294b2a3dba1db97225f536405e6b8586c5c2490b066acc51ead88e1b6f3
7
- data.tar.gz: c1902c6fa5c0a9da9d578e6da64b38715f2d25acbb6afc9289fbca4665dfae8706ebe1607d38786af73f1b1d2fd53f58b8c3025563690111accf64796c24f053
6
+ metadata.gz: b8ca42048570dceb0f6144497a05aa8e435f0a7972c3fb420715a25c8dca4eaa98e1ed3a3ff7a9e69dcdd95b49ba48f91e56941621f7584c75b566496cb86702
7
+ data.tar.gz: 637fbd5f560f798907710aa2aa39c361cbc460e2f5915c36e94fe5f58dc49981f96b64555599b7d6b36c56ae209686a2e1debd76df49c9ea82d6d6f6d31c9776
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "tasker-rb"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  edition = "2021"
5
5
  description = "Ruby bindings for tasker-core: High-performance workflow orchestration"
6
6
  readme = "../../../../README.md"
@@ -66,8 +66,8 @@ sqlx = { version = "0.8", features = [
66
66
  # Both path (for workspace builds) and version (for standalone/published builds).
67
67
  # cargo publish strips the path field, leaving only the version for crates.io resolution.
68
68
  # Version pins are updated by scripts/release/update-versions.sh during release-prepare.
69
- tasker-shared = { path = "../../../../tasker-shared", version = "=0.1.2" }
70
- tasker-worker = { path = "../../../../tasker-worker", version = "=0.1.2" }
69
+ tasker-shared = { path = "../../../../tasker-shared", version = "=0.1.3" }
70
+ tasker-worker = { path = "../../../../tasker-worker", version = "=0.1.3" }
71
71
  # Error handling
72
72
  thiserror = "2.0"
73
73
  # Async runtime for blocking on futures in FFI
@@ -80,7 +80,7 @@ uuid = { version = "1.11", features = ["serde", "v4", "v7"] }
80
80
  workspace_tools = { version = "0.11.0", features = ["full"] }
81
81
 
82
82
  [dev-dependencies]
83
- tasker-core = { package = "tasker-core", path = "../../../../", version = "=0.1.2" }
83
+ tasker-core = { package = "tasker-core", path = "../../../../", version = "=0.1.3" }
84
84
 
85
85
  [features]
86
86
  default = []
@@ -3,7 +3,7 @@
3
3
  module TaskerCore
4
4
  # Version synchronization with the core Rust crate
5
5
  # This should be kept in sync with the Cargo.toml version
6
- VERSION = '0.1.3'
6
+ VERSION = '0.1.4'
7
7
 
8
8
  def self.version_info
9
9
  {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tasker-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Taylor