Version bump
This commit is contained in:
@@ -53,7 +53,7 @@ public class StaticResource {
|
||||
@GET
|
||||
@jakarta.ws.rs.Path("/api/health")
|
||||
public Response health() {
|
||||
return Response.ok(Map.of("status", "ok", "version", "0.1.0")).build();
|
||||
return Response.ok(Map.of("status", "ok", "version", "0.1.1")).build();
|
||||
}
|
||||
|
||||
private String guessContentType(String name) {
|
||||
|
||||
@@ -23,7 +23,7 @@ class StaticResourceTest {
|
||||
assertInstanceOf(Map.class, entity);
|
||||
Map<?, ?> map = (Map<?, ?>) entity;
|
||||
assertEquals("ok", map.get("status"));
|
||||
assertEquals("0.1.0", map.get("version"));
|
||||
assertEquals("0.1.1", map.get("version"));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user