Skip to content

Commit

Permalink
Next is 0.14.x
Browse files Browse the repository at this point in the history
  • Loading branch information
johnaohara committed May 1, 2024
1 parent cef23cf commit f85a424
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Java CI with Maven

on:
push:
branches: [ master, 0.12.x ]
branches: [ master, 0.12.x, 0.13.x ]
tags: [ "*" ]
pull_request:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/notify-clients.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- 0.12.x
- 0.13.x
paths:
- "docs/site/content/en/openapi/openapi.yaml"

Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/en/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ info:
title: Horreum REST API
description: "Horreum automated change anomaly detection. For more information,\
\ please see [https://horreum.hyperfoil.io/](https://horreum.hyperfoil.io/)"
version: "0.13"
version: "0.14"
tags:
- name: Config
description: Endpoint providing configuration for the Horreum System
Expand Down
4 changes: 2 additions & 2 deletions horreum-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.hyperfoil.tools</groupId>
<artifactId>horreum</artifactId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>

<artifactId>horreum-api</artifactId>
Expand All @@ -15,7 +15,7 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<openapi-version>0.13</openapi-version>
<openapi-version>0.14</openapi-version>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package io.hyperfoil.tools.horreum.api;

public class Version {
public static final String VERSION = "0.13.0";
public static final String VERSION = "0.14.0";
}
2 changes: 1 addition & 1 deletion horreum-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>horreum</artifactId>
<groupId>io.hyperfoil.tools</groupId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion horreum-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>horreum</artifactId>
<groupId>io.hyperfoil.tools</groupId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion horreum-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>horreum</artifactId>
<groupId>io.hyperfoil.tools</groupId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion infra/horreum-dev-services/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.hyperfoil.tools</groupId>
<artifactId>horreum-dev-services-parent</artifactId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>
<artifactId>horreum-dev-services-deployment</artifactId>
<name>Horreum Dev Services - Deployment</name>
Expand Down
2 changes: 1 addition & 1 deletion infra/horreum-dev-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>horreum</artifactId>
<groupId>io.hyperfoil.tools</groupId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion infra/horreum-dev-services/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.hyperfoil.tools</groupId>
<artifactId>horreum-dev-services-parent</artifactId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
</parent>
<artifactId>horreum-dev-services</artifactId>
<name>Horreum Dev Services - Runtime</name>
Expand Down
2 changes: 1 addition & 1 deletion infra/horreum-infra-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>horreum</artifactId>
<groupId>io.hyperfoil.tools</groupId>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<name>Horreum infra - common</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<groupId>io.hyperfoil.tools</groupId>
<artifactId>horreum</artifactId>
<packaging>pom</packaging>
<version>0.13-SNAPSHOT</version>
<version>0.14-SNAPSHOT</version>
<modules>
<module>horreum-api</module>
<module>horreum-client</module>
Expand Down

0 comments on commit f85a424

Please sign in to comment.