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 .github/workflows/build_libtestoptimization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
branches: [ main ]

env:
dd_trace_go_ref: "v2.1.0-rc.5"
dd_trace_go_ref: "main"

jobs:
mac_job:
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/test-optimization-sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="test-optimization-sdk",
version="0.0.1",
version="0.0.2",
description="Datadog's test optimization SDK for Python",
author="Datadog",
author_email="info@datadoghq.com",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# Environment variable constants
TEST_OPTIMIZATION_SDK_SKIP_NATIVE_INSTALL = "TEST_OPTIMIZATION_SDK_SKIP_NATIVE_INSTALL"
TEST_OPTIMIZATION_SDK_NATIVE_SEARCH_PATH = "TEST_OPTIMIZATION_SDK_NATIVE_SEARCH_PATH"
TEST_OPTIMIZATION_DOWNLOAD_URL_FORMAT = "https://github.com/DataDog/test-optimization-native/releases/download/v0.0.2-preview/"
TEST_OPTIMIZATION_DOWNLOAD_URL_FORMAT = "https://github.com/DataDog/test-optimization-native/releases/download/v0.0.3-preview/"
2 changes: 1 addition & 1 deletion sdks/rust/test-optimization-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-optimization-sdk"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
description = "Datadog's test optimization sdk"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sdks/rust/test-optimization-sdk/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use ureq::AsSendBody;

const TEST_OPTIMIZATION_SDK_SKIP_NATIVE_INSTALL: &str = "TEST_OPTIMIZATION_SDK_SKIP_NATIVE_INSTALL";
const TEST_OPTIMIZATION_SDK_NATIVE_SEARCH_PATH: &str = "TEST_OPTIMIZATION_SDK_NATIVE_SEARCH_PATH";
const TEST_OPTIMIZATION_DOWNLOAD_URL_FORMAT: &str = "https://github.com/DataDog/test-optimization-native/releases/download/v0.0.2-preview/";
const TEST_OPTIMIZATION_DOWNLOAD_URL_FORMAT: &str = "https://github.com/DataDog/test-optimization-native/releases/download/v0.0.3-preview/";

fn main() {
let target = env::var("TARGET").expect("Cargo did not provide TARGET");
Expand Down
Loading