From 638840011a159644ff8b7d579b08b02ccebfd594 Mon Sep 17 00:00:00 2001 From: kurtosisbot <89932784+kurtosisbot@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:39:01 +0200 Subject: [PATCH 1/2] chore(main): release 0.83.16 --- CHANGELOG.md | 13 +++++++++++++ version.txt | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcfd73dab4..7d2868ce9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.83.16](https://github.com/kurtosis-tech/kurtosis/compare/0.83.15...0.83.16) (2023-10-02) + + +### Features + +* add font ([#1454](https://github.com/kurtosis-tech/kurtosis/issues/1454)) ([75ce332](https://github.com/kurtosis-tech/kurtosis/commit/75ce3323c2b593d3f73f47866307e3476c6633d5)), closes [#1386](https://github.com/kurtosis-tech/kurtosis/issues/1386) +* added --args-file to Kurtosis run ([#1451](https://github.com/kurtosis-tech/kurtosis/issues/1451)) ([fdc6220](https://github.com/kurtosis-tech/kurtosis/commit/fdc622074b9ddb78f0265885c57208ac1e28fc9d)), closes [#1112](https://github.com/kurtosis-tech/kurtosis/issues/1112) + + +### Bug Fixes + +* Remove mouse wheel capture ([#1452](https://github.com/kurtosis-tech/kurtosis/issues/1452)) ([2d35d77](https://github.com/kurtosis-tech/kurtosis/commit/2d35d7731019018051921b9b97735ce90277a68c)), closes [#1438](https://github.com/kurtosis-tech/kurtosis/issues/1438) + ## [0.83.15](https://github.com/kurtosis-tech/kurtosis/compare/0.83.14...0.83.15) (2023-10-02) diff --git a/version.txt b/version.txt index 846f23d16e..371049c6a1 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.83.15 +0.83.16 From a02aacb79ed7d427962b235a7bed3d9155963589 Mon Sep 17 00:00:00 2001 From: kurtosisbot Date: Mon, 2 Oct 2023 14:39:31 +0000 Subject: [PATCH 2/2] Apply automatic changes --- LICENSE.md | 2 +- api/golang/kurtosis_version/kurtosis_version.go | 2 +- api/rust/Cargo.toml | 2 +- api/typescript/package.json | 2 +- api/typescript/src/kurtosis_version/kurtosis_version.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 485007ba31..d1dd43cdb3 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -3,7 +3,7 @@ Business Source License 1.1 Parameters Licensor: Kurtosis Technologies, Inc. -Licensed Work: Kurtosis 0.83.15 +Licensed Work: Kurtosis 0.83.16 The Licensed Work is (c) 2023 Kurtosis Technologies, Inc. Additional Use Grant: You may make use of the Licensed Work, provided that you may not use the Licensed Work for an Environment Orchestration Service. diff --git a/api/golang/kurtosis_version/kurtosis_version.go b/api/golang/kurtosis_version/kurtosis_version.go index 00b25d1a3c..2e6883cb84 100644 --- a/api/golang/kurtosis_version/kurtosis_version.go +++ b/api/golang/kurtosis_version/kurtosis_version.go @@ -9,6 +9,6 @@ const ( // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! // This is necessary so that Kurt Core consumers will know if they're compatible with the currently-running // API container - KurtosisVersion = "0.83.15" + KurtosisVersion = "0.83.16" // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! ) diff --git a/api/rust/Cargo.toml b/api/rust/Cargo.toml index 709eda8b59..78f34551df 100644 --- a/api/rust/Cargo.toml +++ b/api/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kurtosis-sdk" -version = "0.83.15" +version = "0.83.16" license = "BUSL-1.1" description = "Rust SDK for Kurtosis" edition = "2021" diff --git a/api/typescript/package.json b/api/typescript/package.json index deb0afaaf7..cca227e60d 100644 --- a/api/typescript/package.json +++ b/api/typescript/package.json @@ -1,7 +1,7 @@ { "name": "kurtosis-sdk", "//": "NOTE: DO NOT UPDATE THIS VERSION MANUALLY - IT WILL BE UPDATED DURING THE RELEASE PROCESS!", - "version": "0.83.15", + "version": "0.83.16", "main": "./build/index", "description": "This repo contains a Typescript client for communicating with the Kurtosis Engine server, which is responsible for creating, managing and destroying Kurtosis Enclaves.", "types": "./build/index", diff --git a/api/typescript/src/kurtosis_version/kurtosis_version.ts b/api/typescript/src/kurtosis_version/kurtosis_version.ts index 40d093593c..bd89365b39 100644 --- a/api/typescript/src/kurtosis_version/kurtosis_version.ts +++ b/api/typescript/src/kurtosis_version/kurtosis_version.ts @@ -1,5 +1,5 @@ // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! // This is necessary so that Kurt Core consumers (e.g. modules) will know if they're compatible with the currently-running // API container -export const KURTOSIS_VERSION: string = "0.83.15" +export const KURTOSIS_VERSION: string = "0.83.16" // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!