Skip to content

Commit a4237b0

Browse files
Update README for new release (0.2.3). Set version to 0.2.4-SNAPSHOT
1 parent b5f1fb0 commit a4237b0

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Add the following dependency to your maven project:
9494
<dependency>
9595
<groupId>com.insidion</groupId>
9696
<artifactId>axon-open-admin-starter</artifactId>
97-
<version>0.2.2</version>
97+
<version>0.2.3</version>
9898
</dependency>
9999
```
100100

frontend/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<parent>
66
<groupId>com.insidion</groupId>
77
<artifactId>axon-open-admin-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.4-SNAPSHOT</version>
99
</parent>
1010
<artifactId>axon-open-admin-frontend</artifactId>
11-
<version>0.2.3-SNAPSHOT</version>
11+
<version>0.2.4-SNAPSHOT</version>
1212
<name>Frontend</name>
1313

1414
<properties>

frontend/src/pages/DlqPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function DlqPage() {
3939
}
4040

4141
setFetching(false)
42-
}, [setFetching, name])
42+
}, [setFetching, name, service])
4343

4444
useEffect(() => {
4545
const interval = setInterval(() => {
@@ -61,7 +61,7 @@ export function DlqPage() {
6161
}
6262
fetchPage()
6363
});
64-
}, [name, fetchPage])
64+
}, [name, fetchPage, service])
6565
const evictFirstCallback = useCallback((sequence) => {
6666
callService(service, serviceUrl => fetch(`${serviceUrl}/dlq/items/${name}/${sequence}/evict/first`, {method: 'POST'}))
6767
.then(value => {
@@ -72,7 +72,7 @@ export function DlqPage() {
7272
}
7373
fetchPage()
7474
});
75-
}, [name, fetchPage])
75+
}, [name, fetchPage, service])
7676
const evictAllCallback = useCallback((sequence) => {
7777
callService(service, serviceUrl => fetch(`${serviceUrl}/dlq/items/${name}/${sequence}/evict/all`, {method: 'POST'}))
7878
.then(value => {
@@ -83,7 +83,7 @@ export function DlqPage() {
8383
}
8484
fetchPage()
8585
});
86-
}, [name, fetchPage])
86+
}, [name, fetchPage, service])
8787

8888
return <Card title={<Space direction={"horizontal"}>
8989
<Button onClick={() => history.goBack()}><ArrowLeftOutlined/></Button>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.insidion</groupId>
99
<artifactId>axon-open-admin-parent</artifactId>
10-
<version>0.2.3-SNAPSHOT</version>
10+
<version>0.2.4-SNAPSHOT</version>
1111

1212
<name>Axon Open Admin parent POM</name>
1313
<description>This Spring Boot starter project contains an administration interface for Axon Framework, including managing its tracking tokens.</description>

starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.insidion</groupId>
88
<artifactId>axon-open-admin-parent</artifactId>
9-
<version>0.2.3-SNAPSHOT</version>
9+
<version>0.2.4-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>axon-open-admin-starter</artifactId>
1212

13-
<version>0.2.3-SNAPSHOT</version>
13+
<version>0.2.4-SNAPSHOT</version>
1414

1515
<modelVersion>4.0.0</modelVersion>
1616
<packaging>jar</packaging>

0 commit comments

Comments
 (0)