liter_llm 1.1.0 → 1.1.1

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: bd0fb204ec361182a87bff72c133eee44d081ecbf37ce936361c631433a28817
4
- data.tar.gz: a42719e7acbdd1d097a392eeb3a55c21be528e27abcfdd5d4333e541c6e8521b
3
+ metadata.gz: 87c0ce7287f3e000b825d496b84662586cb3d8899f11a9f7a8bac55587ddc26c
4
+ data.tar.gz: 5099baea9360fb98d4949324773b9ef5b3dafc870150f1992f3887162b79994e
5
5
  SHA512:
6
- metadata.gz: d0e2aa5b9b03cf11c55535f95f9cfe78e87e496ac4b7f62a15a3408de508547cd3aa4503bee5f27ce4ce71ac7fa2ce1fdc2cb4bc8b828a5b073b5cdbdd769f96
7
- data.tar.gz: 541a179bb37ecf1a3332f364d6f7fd5e7d2b8cba369e210b2e2807d64564135b58a8cb388e4ced465f57eda308782bf869f950149f07633d1c64103f307ce7ab
6
+ metadata.gz: 9452263146c7206ebad3b3ca9b0bc163e251ad832b3b4b4b7352132356e59d29779f2741ebe095607a3cdf7a668ff3eb5cf7ae0b2e6593a043e1f92922761897
7
+ data.tar.gz: 991f0752533062901b10252157ff0c4fa9e6e69bb69ee5e8218e2124ed70d01cc84c51a1a469ef2a167504b6ff369239712116ed80e1873fb0d662da8c9d3bdd
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "liter-llm-rb"
3
- version = "1.1.0"
3
+ version = "1.1.1"
4
4
  edition = "2024"
5
5
  authors = ["Na'aman Hirschfeld <naaman@kreuzberg.dev>"]
6
6
  license = "MIT"
data/vendor/Cargo.toml CHANGED
@@ -2,7 +2,7 @@
2
2
  members = ["liter-llm", "liter-llm-ffi"]
3
3
 
4
4
  [workspace.package]
5
- version = "1.1.0"
5
+ version = "1.1.1"
6
6
  edition = "2024"
7
7
  authors = ["Na'aman Hirschfeld <naaman@kreuzberg.dev>"]
8
8
  license = "MIT"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "liter-llm"
3
- version = "1.1.0"
3
+ version = "1.1.1"
4
4
  edition = "2024"
5
5
  license = "MIT"
6
6
  repository.workspace = true
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "liter-llm-ffi"
3
- version = "1.1.0"
3
+ version = "1.1.1"
4
4
  edition = "2024"
5
5
  license = "MIT"
6
6
  repository.workspace = true
@@ -20,8 +20,8 @@ default = []
20
20
  base64.workspace = true
21
21
  bytes.workspace = true
22
22
  futures-core.workspace = true
23
- liter-llm = { path = "../liter-llm", version = "1.1.0", features = ["full"] }
24
- liter-llm-bindings-core = { path = "../liter-llm-bindings-core", version = "1.1.0" }
23
+ liter-llm = { path = "../liter-llm", version = "1.1.1", features = ["full"] }
24
+ liter-llm-bindings-core = { path = "../liter-llm-bindings-core", version = "1.1.1" }
25
25
  serde.workspace = true
26
26
  serde_json.workspace = true
27
27
  tokio.workspace = true
@@ -9,8 +9,8 @@
9
9
 
10
10
  #define LITER_LLM_VERSION_MAJOR 1
11
11
  #define LITER_LLM_VERSION_MINOR 1
12
- #define LITER_LLM_VERSION_PATCH 0
13
- #define LITER_LLM_VERSION "1.1.0"
12
+ #define LITER_LLM_VERSION_PATCH 1
13
+ #define LITER_LLM_VERSION "1.1.1"
14
14
 
15
15
 
16
16
  #include <stdarg.h>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: liter_llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Na'aman Hirschfeld