Skip to content

Commit

Permalink
For release 260 (#1910)
Browse files Browse the repository at this point in the history
  • Loading branch information
muralibasani authored Oct 23, 2023
1 parent 1d2099c commit 7ac9a7d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 2.5.0
version = 2.6.0

# Sets a custom hook path in the local git config.
# Currently there's only a pre-commit hook related
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ For the versions available, see the [tags on this repository](https://github.com

- Help Wizard to setup Klaw

[See Features of Klaw in docs](https://www.klaw-project.io/docs/features)

## Documentation

- User documentation : https://klaw-project.io/docs
Expand Down Expand Up @@ -155,6 +157,8 @@ java -jar core/target/klaw-<version>.jar

java -jar cluster-api/target/cluster-api-<version>.jar --spring.config.location=cluster-api/target/classes/application.properties

Or run bin/run-klaw.sh for Mac/Linux

### With `make`

1. Clone this repo containing two maven modules (core and cluster-api) : `git clone [email protected]:aiven/klaw.git`
Expand Down
2 changes: 1 addition & 1 deletion bin/run-klaw.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Declarations
version=2.5.0
version=2.6.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 @@ -1245,8 +1245,8 @@ export type components = {
hasSchema: boolean;
/** Format: int32 */
clusterId: number;
topicOwner?: boolean;
highestEnv?: boolean;
topicOwner?: boolean;
};
TopicBaseConfig: {
topicName: string;
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.5.0"
"version" : "2.6.0"
},
"externalDocs" : {
"description" : "Klaw documentation",
Expand Down Expand Up @@ -7908,10 +7908,10 @@
"type" : "integer",
"format" : "int32"
},
"topicOwner" : {
"highestEnv" : {
"type" : "boolean"
},
"highestEnv" : {
"topicOwner" : {
"type" : "boolean"
}
},
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.5.0</revision>
<revision>2.6.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 7ac9a7d

Please sign in to comment.