divijvaidya commented on PR #14229:
URL: https://github.com/apache/kafka/pull/14229#issuecomment-1695535002
The output of the script has an indentation problem in the following diff,
it is not having the correct indentation for "<version>"
```
diff --git a/streams/quickstart/java/pom.xml
b/streams/quickstart/java/pom.xml
index acd3a1b285..02a1df3f69 100644
--- a/streams/quickstart/java/pom.xml
+++ b/streams/quickstart/java/pom.xml
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
- <version>3.5.1</version>
+ <version>3.5.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
```
and
```
diff --git a/streams/quickstart/java/pom.xml
b/streams/quickstart/java/pom.xml
index acd3a1b285..02a1df3f69 100644
--- a/streams/quickstart/java/pom.xml
+++ b/streams/quickstart/java/pom.xml
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
- <version>3.5.1</version>
+ <version>3.5.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
```
similarly, it modified the indentation at whereas it should not modify it
```
// Define variables for doc templates
-var context={
- "version": "35",
- "dotVersion": "3.5",
- "fullDotVersion": "3.5.1",
- "scalaVersion": "2.13"
-};
+var context = {
+ "version": "35",
+ "dotVersion": "3.5",
+ "fullDotVersion": "3.5.2",
+ "scalaVersion": "2.13"
+};
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]