Skip to content

Commit 65f82db

Browse files
committed
added venus version 8.8.1 and 8.8.2 to doc project init
1 parent dca2569 commit 65f82db

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- [fj-doc-playground-quarkus] added venus version 8.8.1 and 8.8.2 to doc project init
13+
1014
## [8.8.2] - 2024-09-10
1115

1216
### Changed

fj-doc-playground-quarkus/src/main/react/src/playground/DocProjectInit.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const DocProjectInit = () => {
1919
const [artifactId, setArtifactId] = useState('fugerit-doc-demo'); // State to handle artifactId input
2020
const [projectVersion, setProjectVersion] = useState('1.0.0-SNAPSHOT'); // State to handle projectVersion input
2121
const [javaVersion, setJavaVersion] = useState('21'); // State to handle javaVersion selection
22-
const [venusVersion, setVenusVersion] = useState('8.8.0'); // State to handle javaVersion selection
22+
const [venusVersion, setVenusVersion] = useState('8.8.2'); // State to handle javaVersion selection
2323
const [flavour, setFlavour] = useState('vanilla'); // State to handle javaVersion selection
2424
const [isSubmitting, setIsSubmitting] = useState(false); // State to manage submit button loading state
2525
const [serverMessage, setServerMessage] = useState(''); // State to store the message from the server response
@@ -191,6 +191,8 @@ const DocProjectInit = () => {
191191
onChange={handleVenusVersionChange}
192192
>
193193
{/* Allowed values for venusVersion */}
194+
<MenuItem value={'8.8.2'}>8.8.2</MenuItem>
195+
<MenuItem value={'8.8.1'}>8.8.1</MenuItem>
194196
<MenuItem value={'8.8.0'}>8.8.0</MenuItem>
195197
<MenuItem value={'8.7.6'}>8.7.6</MenuItem>
196198
<MenuItem value={'8.7.5'}>8.7.5</MenuItem>

0 commit comments

Comments
 (0)