Skip to content

Commit

Permalink
Bump version to 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
schmika committed Dec 6, 2023
1 parent a3228d9 commit 2c46088
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 37 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [6.0.1] - 2023-12-06

### Fixed
- Remove SNAPSHOT version from pom

## [6.0.0]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.dbmdz.flusswerk</groupId>
<artifactId>flusswerk</artifactId>
<version>6.0.0</version>
<version>6.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void setUp() {
@Test
void error() {
flusswerkLogger.error("format string", "a");
verify(logger).error(anyString(), (Object[]) any());
verify(logger).error(anyString(), any(Object[].class));
}

@DisplayName("should move Throwable to the end")
Expand All @@ -50,28 +50,28 @@ void shouldMoveThrowableToTheEnd() {
@Test
void warn() {
flusswerkLogger.warn("format string", "a");
verify(logger).warn(anyString(), (Object[]) any());
verify(logger).warn(anyString(), any(Object[].class));
}

@DisplayName("should use info logging")
@Test
void info() {
flusswerkLogger.info("format string", "a");
verify(logger).info(anyString(), (Object[]) any());
verify(logger).info(anyString(), any(Object[].class));
}

@DisplayName("should use debug logging")
@Test
void debug() {
flusswerkLogger.debug("format string", "a");
verify(logger).debug(anyString(), (Object[]) any());
verify(logger).debug(anyString(), any(Object[].class));
}

@DisplayName("should use trace logging")
@Test
void trace() {
flusswerkLogger.trace("format string", "a");
verify(logger).trace(anyString(), (Object[]) any());
verify(logger).trace(anyString(), any(Object[].class));
}

@DisplayName("should add tracing information")
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.github.dbmdz.flusswerk</groupId>
<artifactId>flusswerk</artifactId>
<version>6.0.0</version>
<version>6.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
45 changes: 15 additions & 30 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

<groupId>com.github.dbmdz.flusswerk</groupId>
<artifactId>flusswerk</artifactId>
<version>6.0.0</version>
<version>6.0.1</version>
<packaging>pom</packaging>

<name>Flusswerk</name>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.5</version>
<version>3.2.0</version>
</parent>

<description>
Expand Down Expand Up @@ -69,56 +69,41 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Dependency versions -->
<version.amqp-client>5.16.0</version.amqp-client>
<version.logstash-encoder>7.3</version.logstash-encoder>
<version.flusswerk>6.0.0-SNAPSHOT</version.flusswerk>
<version.junit>5.7.0</version.junit>
<version.mockito>4.10.0</version.mockito>
<!-- Plugin versions -->
<version.fmt-maven-plugin>2.21.1</version.fmt-maven-plugin>
<version.githook-maven-plugin>1.0.5</version.githook-maven-plugin>
<version.maven-gpg-plugin>3.1.0</version.maven-gpg-plugin>
<version.maven-jacoco-plugin>0.8.11</version.maven-jacoco-plugin>
<version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin>
<version.wagon-maven-plugin>2.0.2</version.wagon-maven-plugin>
<version.huxhorn-sulky-ulid>8.3.0</version.huxhorn-sulky-ulid>
<version.junit-jupiter>5.10.1</version.junit-jupiter>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>${version.amqp-client}</version>
<version>5.20.0</version>
</dependency>
<dependency>
<groupId>com.github.dbmdz.flusswerk</groupId>
<artifactId>framework</artifactId>
<version>${version.flusswerk}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>${version.logstash-encoder}</version>
<version>7.4</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${version.mockito}</version>
<version>5.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${version.junit-jupiter}</version>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.huxhorn.sulky</groupId>
<artifactId>de.huxhorn.sulky.ulid</artifactId>
<version>${version.huxhorn-sulky-ulid}</version>
<version>8.3.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -128,7 +113,7 @@
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>${version.fmt-maven-plugin}</version>
<version>2.21.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -178,22 +163,22 @@
<plugin>
<groupId>io.github.phillipuniverse</groupId>
<artifactId>githook-maven-plugin</artifactId>
<version>${version.githook-maven-plugin}</version>
<version>1.0.5</version>
</plugin>
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>${version.fmt-maven-plugin}</version>
<version>2.21.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>${version.wagon-maven-plugin}</version>
<version>2.0.2</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${version.maven-jacoco-plugin}</version>
<version>0.8.11</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -233,7 +218,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.nexus-staging-maven-plugin}</version>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down Expand Up @@ -286,7 +271,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.maven-gpg-plugin}</version>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit 2c46088

Please sign in to comment.