Skip to content

Commit 8016ccb

Browse files
authored
chore(main): release 0.88.17 (#2376)
🤖 I have created a release *beep* *boop* --- ## [0.88.17](0.88.16...0.88.17) (2024-04-15) ### Features * Add reason argument to the cancel subscription method ([#2377](#2377)) ([dd8d1ff](dd8d1ff)) * change made with to star us on ([#2375](#2375)) ([56677a1](56677a1)) * get all services ([#2367](#2367)) ([2ba98f5](2ba98f5)) ### Bug Fixes * Use instance `updated at` attribute for uptime calculation ([#2378](#2378)) ([421d275](421d275)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: kurtosisbot <kurtosisbot@users.noreply.github.com>
1 parent 421d275 commit 8016ccb

File tree

10 files changed

+25
-11
lines changed

10 files changed

+25
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.88.17](https://github.com/kurtosis-tech/kurtosis/compare/0.88.16...0.88.17) (2024-04-15)
4+
5+
6+
### Features
7+
8+
* Add reason argument to the cancel subscription method ([#2377](https://github.com/kurtosis-tech/kurtosis/issues/2377)) ([dd8d1ff](https://github.com/kurtosis-tech/kurtosis/commit/dd8d1ffa8115666ae3a547ea1b6147f05d77c4f2))
9+
* change made with to star us on ([#2375](https://github.com/kurtosis-tech/kurtosis/issues/2375)) ([56677a1](https://github.com/kurtosis-tech/kurtosis/commit/56677a13226ad30c2272b4c1b761e8a658e5d19c))
10+
* get all services ([#2367](https://github.com/kurtosis-tech/kurtosis/issues/2367)) ([2ba98f5](https://github.com/kurtosis-tech/kurtosis/commit/2ba98f5f3d82ffd099cda0942ee358fe02bc70a5))
11+
12+
13+
### Bug Fixes
14+
15+
* Use instance `updated at` attribute for uptime calculation ([#2378](https://github.com/kurtosis-tech/kurtosis/issues/2378)) ([421d275](https://github.com/kurtosis-tech/kurtosis/commit/421d27593d537a104c825e0e7120200175287e07))
16+
317
## [0.88.16](https://github.com/kurtosis-tech/kurtosis/compare/0.88.15...0.88.16) (2024-04-08)
418

519

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Business Source License 1.1
33
Parameters
44

55
Licensor: Kurtosis Technologies, Inc.
6-
Licensed Work: Kurtosis 0.88.16
6+
Licensed Work: Kurtosis 0.88.17
77
The Licensed Work is (c) 2024 Kurtosis Technologies, Inc.
88
Additional Use Grant: You may make use of the Licensed Work, provided that
99
you may not use the Licensed Work for an Environment Orchestration Service.
@@ -12,7 +12,7 @@ you may not use the Licensed Work for an Environment Orchestration Service.
1212
allows third parties (other than your employees and
1313
contractors) to create distributed system environments.
1414

15-
Change Date: 2028-04-08
15+
Change Date: 2028-04-15
1616

1717
Change License: Apache 2.0 (Apache License, Version 2.0)
1818

api/golang/kurtosis_version/kurtosis_version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ const (
99
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
1010
// This is necessary so that Kurt Core consumers will know if they're compatible with the currently-running
1111
// API container
12-
KurtosisVersion = "0.88.16"
12+
KurtosisVersion = "0.88.17"
1313
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
1414
)

api/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kurtosis-sdk"
3-
version = "0.88.16"
3+
version = "0.88.17"
44
license = "BUSL-1.1"
55
description = "Rust SDK for Kurtosis"
66
edition = "2021"

api/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kurtosis-sdk",
33
"//": "NOTE: DO NOT UPDATE THIS VERSION MANUALLY - IT WILL BE UPDATED DURING THE RELEASE PROCESS!",
4-
"version": "0.88.16",
4+
"version": "0.88.17",
55
"main": "./build/index",
66
"description": "This repo contains a Typescript client for communicating with the Kurtosis Engine server, which is responsible for creating, managing and destroying Kurtosis Enclaves.",
77
"types": "./build/index",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
22
// This is necessary so that Kurt Core consumers (e.g. modules) will know if they're compatible with the currently-running
33
// API container
4-
export const KURTOSIS_VERSION: string = "0.88.16"
4+
export const KURTOSIS_VERSION: string = "0.88.17"
55
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!

enclave-manager/web/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*"],
3-
"version": "0.88.16",
3+
"version": "0.88.17",
44
"npmClient": "yarn",
55
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
66
"useNx": false,

enclave-manager/web/packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kurtosis/emui-app",
3-
"version": "0.88.16",
3+
"version": "0.88.17",
44
"private": true,
55
"homepage": ".",
66
"dependencies": {
@@ -10,7 +10,7 @@
1010
"html-react-parser": "^4.2.2",
1111
"js-cookie": "^3.0.5",
1212
"kurtosis-cloud-indexer-sdk": "^0.0.31",
13-
"kurtosis-ui-components": "0.88.16",
13+
"kurtosis-ui-components": "0.88.17",
1414
"react-error-boundary": "^4.0.11",
1515
"react-hook-form": "^7.47.0",
1616
"react-mentions": "^4.4.10",

enclave-manager/web/packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kurtosis-ui-components",
3-
"version": "0.88.16",
3+
"version": "0.88.17",
44
"private": false,
55
"main": "build/index",
66
"description": "This repo contains components used by Kurtosis UI applications.",

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.88.16
1+
0.88.17

0 commit comments

Comments
 (0)