diff --git a/go/constants.go b/go/constants.go index 62ff557c..30d7f30f 100644 --- a/go/constants.go +++ b/go/constants.go @@ -18,4 +18,4 @@ const sdkVersionHeaderName = "x-cx-sdk-version" const sdkLanguageHeaderName = "x-cx-sdk-language" const sdkGoVersionHeaderName = "x-cx-go-version" const sdkCorrelationIDHeaderName = "x-cx-correlation-id" -const vanillaSdkVersion = "1.1.0" +const vanillaSdkVersion = "1.1.2" diff --git a/go/dashboards-client.go b/go/dashboards-client.go index 4a19d53d..a66ef2e4 100644 --- a/go/dashboards-client.go +++ b/go/dashboards-client.go @@ -58,10 +58,10 @@ type Dashboard = dashboards.Dashboard // RowStyle is a style for a row. type RowStyle = dashboards.RowStyle -// PromQlQueryType is a type for promql query. +// PromQLQueryType is a type for promql query. type PromQLQueryType = dashboards.PromQLQueryType -// PromQlQueryType values. +// PromQLQueryType values. const ( PromQLQueryTypeInstant = dashboards.PromQLQueryType_PROM_QL_QUERY_TYPE_INSTANT PromQLQueryTypeRange = dashboards.PromQLQueryType_PROM_QL_QUERY_TYPE_RANGE diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 9ed70ad1..18a7c007 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -245,7 +245,7 @@ dependencies = [ [[package]] name = "cx-api" -version = "1.1.0" +version = "1.1.2" dependencies = [ "prost", "prost-types", @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "cx-sdk" -version = "1.1.0" +version = "1.1.2" dependencies = [ "backoff", "bytes", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 6932e317..027a59ca 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -11,7 +11,7 @@ resolver = "2" [workspace.package] -version = "1.1.0" +version = "1.1.2" license = "Apache-2.0" edition = "2021" repository = "https://github.com/coralogix/coralogix-management-sdk" @@ -48,5 +48,5 @@ serde = { version = "1", features = ["derive"] } serde_json = "1.0" bytes = "1.6" reqwest = { version = "0.12", features = ["json"] } -cx-api = { version = "1.1.0", path = "cx-api" } +cx-api = { version = "1.1.2", path = "cx-api" } uuid = { version = "1.10", features = ["v4", "fast-rng"] }