Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

* #129: Fixed broken links and updated dependencies. #130

Merged
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
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [4.5.1](changes_4.5.1.md)
* [4.5.0](changes_4.5.0.md)
* [4.4.2](changes_4.4.2.md)
* [4.4.1](changes_4.4.1.md)
Expand Down
19 changes: 19 additions & 0 deletions doc/changes/changes_4.5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Exasol SQL Statement Builder 4.5.1, released 2021-??-??

Code name:

## Refactoring

* #129: Fixed broken links and updated dependencies.

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:error-reporting-java:0.4.0` to `0.4.1`

### Test Dependency Updates

* Updated `nl.jqno.equalsverifier:equalsverifier:3.7.1` to `3.7.2`
* Updated `org.mockito:mockito-core:3.12.4` to `4.0.0`
* Updated `org.mockito:mockito-junit-jupiter:3.12.4` to `4.0.0`
2 changes: 1 addition & 1 deletion doc/system_requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Introduction

The Exasol SQL Statement Builder (ESB) is a [Java](https://java.com) library that allows you to define SQL statements in a [internal Domain-specific language (DSL)](https://en.wikipedia.org/wiki/Domain-specific_language#Usage_patterns). This means it uses standard Java language features to create a DSL.
The Exasol SQL Statement Builder (ESB) is a [Java](https://www.oracle.com/java/) library that allows you to define SQL statements in a [internal Domain-specific language (DSL)](https://en.wikipedia.org/wiki/Domain-specific_language#Usage_patterns). This means it uses standard Java language features to create a DSL.

The project uses agile software development process, so this document contains only the portion of requirement necessary for the current iteration.

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>sql-statement-builder</artifactId>
<version>4.5.0</version>
<version>4.5.1</version>
<name>Exasol SQL Statement Builder</name>
<description>This module provides a Builder for SQL statements that helps creating the correct structure and
validates variable parts of the statements.
Expand All @@ -16,7 +16,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<gpg.skip>true</gpg.skip>
<mockito.version>3.12.4</mockito.version>
<mockito.version>4.0.0</mockito.version>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>error-reporting-java</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -97,7 +97,7 @@
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down