Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.5.3] - 2022-11-14
- Bump logback-classic to 1.3.4 to fix logging
- Bump slf4j-api to 2.0.3
- Remove redundant junit-jupiter dependency

## [0.5.2] - 2022-11-11
- Add dependency management
- Bump snakeyaml to 1.33
Expand Down
36 changes: 16 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@
<organization>Tarantool</organization>
<organizationUrl>https://tarantool.io/</organizationUrl>
</developer>
<developer>
<id>ArtDub</id>
<name>Artyom Dubinin</name>
<email>rusartdub@gmail.com</email>
<organization>Tarantool</organization>
<organizationUrl>https://tarantool.io/</organizationUrl>
</developer>
</developers>

<issueManagement>
Expand Down Expand Up @@ -63,18 +70,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
<version>2.0.3</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -93,12 +89,18 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.3.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -107,12 +109,6 @@
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down