Skip to content

Commit

Permalink
Release 2.9.0 (#2400)
Browse files Browse the repository at this point in the history
* Release 2.9.0

Signed-off-by: Muralidhar Basani <[email protected]>

* 🤖 Auto-update API types for TypeScript usage

---------

Signed-off-by: Muralidhar Basani <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
muralibasani and github-actions[bot] authored Apr 8, 2024
1 parent ed8e8f0 commit 3256a35
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 2.8.0
version = 2.9.0
NODE = node

# Sets a custom hook path in the local git config.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@ Klaw (formerly Kafkawize) is maintained by, [Aiven](https://aiven.io/) open sour
Recent contributors are listed on the GitHub project page,
https://github.com/aiven/klaw/graphs/contributors

Copyright (c) 2023 Aiven Oy and klaw project contributors.
Copyright (c) 2024 Aiven Oy and klaw project contributors.
2 changes: 1 addition & 1 deletion bin/run-klaw.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SET CURRENTDIR="%cd%"
set DIR=%~dp0..\
cd %DIR%

set version=2.8.0
set version=2.9.0
set core_lib=.\core\target\klaw-%version%.jar
set cluster_lib=.\cluster-api\target\cluster-api-%version%.jar
set core_config=.\core\target\classes\application.properties
Expand Down
2 changes: 1 addition & 1 deletion bin/run-klaw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKING_DIR="$(dirname "$0")"/..
cd $WORKING_DIR

# Declarations
version=2.8.0
version=2.9.0
core_lib=./core/target/klaw-${version}.jar
cluster_lib=./cluster-api/target/cluster-api-${version}.jar
core_config=./core/target/classes/application.properties
Expand Down
2 changes: 1 addition & 1 deletion coral/types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1364,8 +1364,8 @@ export type components = {
scales?: components["schemas"]["Scales"];
};
Scales: {
xaxes?: components["schemas"]["YAx"][];
yaxes?: components["schemas"]["YAx"][];
xaxes?: components["schemas"]["YAx"][];
};
TeamOverview: {
producerAclsPerTeamsOverview?: components["schemas"]["ChartsJsOverview"];
Expand Down
6 changes: 3 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name" : "Apache 2.0",
"url" : "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version" : "2.8.0"
"version" : "2.9.0"
},
"externalDocs" : {
"description" : "Klaw documentation",
Expand Down Expand Up @@ -8227,13 +8227,13 @@
},
"Scales" : {
"properties" : {
"xaxes" : {
"yaxes" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/YAx"
}
},
"yaxes" : {
"xaxes" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/YAx"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</parent>

<properties>
<revision>2.8.0</revision>
<revision>2.9.0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
Expand Down

0 comments on commit 3256a35

Please sign in to comment.