Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tensorzero"
version = "2025.01.1"
version = "2025.01.2"
description = "The Python client for TensorZero"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion clients/python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct Migration0008<'a> {
pub clickhouse: &'a ClickHouseConnectionInfo,
}

impl<'a> Migration for Migration0008<'a> {
impl Migration for Migration0008<'_> {
/// Check if you can connect to the database
/// Also check that the tables that need altering already exist
async fn can_apply(&self) -> Result<(), Error> {
Expand Down
2 changes: 1 addition & 1 deletion gateway/src/endpoints/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use axum::http::StatusCode;
use axum::response::Json;
use serde_json::{json, Value};

const TENSORZERO_VERSION: &str = "2025.01.1";
const TENSORZERO_VERSION: &str = "2025.01.2";

/// A handler for a simple liveness check
#[debug_handler]
Expand Down