Skip to content

Commit efb94e0

Browse files
authored
Patch version 3.3.6 (#3329)
* chore: prepare version 3.3.6 * fix(benchmark): clear up progress_gauge fn signature Otherwise there is a compiler error.
1 parent 5e747f4 commit efb94e0

13 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ default-members = [
2121
resolver = "2"
2222

2323
[workspace.package]
24-
version = "3.3.5-dev0"
24+
version = "3.3.6-dev0"
2525
edition = "2021"
2626
authors = ["Olivier Dehaene"]
2727
homepage = "https://github.com/huggingface/text-generation-inference"

benchmark/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ impl Data {
434434
}
435435

436436
/// Progress bar
437-
fn progress_gauge(title: &str, label: String, progress: f64, color: Color) -> Gauge {
437+
fn progress_gauge(title: &str, label: String, progress: f64, color: Color) -> Gauge<'_> {
438438
Gauge::default()
439439
.block(Block::default().title(title).borders(Borders::ALL))
440440
.gauge_style(Style::default().fg(color))

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"name": "Apache 2.0",
1111
"url": "https://www.apache.org/licenses/LICENSE-2.0"
1212
},
13-
"version": "3.3.5-dev0"
13+
"version": "3.3.6-dev0"
1414
},
1515
"paths": {
1616
"/": {

integration-tests/models/__snapshots__/test_flash_gemma3/test_flash_gemma3_image_base64_rgb_jpg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"id": "",
1818
"model": "google/gemma-3-4b-it",
1919
"object": "chat.completion",
20-
"system_fingerprint": "3.3.5-dev0-native",
20+
"system_fingerprint": "3.3.6-dev0-native",
2121
"usage": {
2222
"completion_tokens": 42,
2323
"prompt_tokens": 277,

integration-tests/models/__snapshots__/test_flash_gemma3/test_flash_gemma3_image_base64_rgb_png.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"id": "",
1818
"model": "google/gemma-3-4b-it",
1919
"object": "chat.completion",
20-
"system_fingerprint": "3.3.5-dev0-native",
20+
"system_fingerprint": "3.3.6-dev0-native",
2121
"usage": {
2222
"completion_tokens": 62,
2323
"prompt_tokens": 277,

integration-tests/models/__snapshots__/test_flash_gemma3/test_flash_gemma3_image_base64_rgba.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"id": "",
1818
"model": "google/gemma-3-4b-it",
1919
"object": "chat.completion",
20-
"system_fingerprint": "3.3.5-dev0-native",
20+
"system_fingerprint": "3.3.6-dev0-native",
2121
"usage": {
2222
"completion_tokens": 67,
2323
"prompt_tokens": 277,

integration-tests/models/__snapshots__/test_flash_gemma3/test_flash_gemma3_image_cow.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"id": "",
1818
"model": "google/gemma-3-4b-it",
1919
"object": "chat.completion",
20-
"system_fingerprint": "3.3.5-dev0-native",
20+
"system_fingerprint": "3.3.6-dev0-native",
2121
"usage": {
2222
"completion_tokens": 72,
2323
"prompt_tokens": 275,

integration-tests/models/__snapshots__/test_flash_gemma3/test_flash_gemma3_image_cow_dog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"id": "",
1818
"model": "google/gemma-3-4b-it",
1919
"object": "chat.completion",
20-
"system_fingerprint": "3.3.5-dev0-native",
20+
"system_fingerprint": "3.3.6-dev0-native",
2121
"usage": {
2222
"completion_tokens": 80,
2323
"prompt_tokens": 279,

integration-tests/models/__snapshots__/test_json_schema_constrain/test_json_schema_basic.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"id": "",
1515
"model": "google/gemma-3-4b-it",
1616
"object": "chat.completion",
17-
"system_fingerprint": "3.3.5-dev0-native",
17+
"system_fingerprint": "3.3.6-dev0-native",
1818
"usage": {
1919
"completion_tokens": 35,
2020
"prompt_tokens": 32,

0 commit comments

Comments
 (0)