Skip to content

Commit

Permalink
release v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Lasinger committed Dec 27, 2019
1 parent bdc2488 commit 237f36e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
<!-- Categories: Added, Changed, Deprecated, Removed, Fixed, Security -->

## [Unreleased]
- rework TestConfigs

## [0.3.4] - 2019-12-27
### Changed
- implementing Servlets must now provide their configs as TestConfigs.Builder
- changed TestConfigs to Builder pattern

## [0.3.3] - 2019-10-10
- don't flush writers early to prevent potential conflicts with e.g. Content-MD5 filters
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ The intended use is not clear-cut. The servlet can be used for e.g.
```java
public class MinimalSelftestServlet extends SelftestServlet {
@Override
protected TestConfigs getConfigs() {
return new TestConfigs("param1");
protected TestConfigs.Builder getConfigs() {
return new TestConfigs.Builder("param1");
}
public static class TestEcho implements TestCase {
@Override
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>net.oneandone.httpselftest</groupId>
<artifactId>selftest-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3.4</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion selftest-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>net.oneandone.httpselftest</groupId>
<artifactId>selftest-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3.4</version>
</parent>

<artifactId>selftest-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion selftest-nologger-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>net.oneandone.httpselftest</groupId>
<artifactId>selftest-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3.4</version>
</parent>

<artifactId>selftest-nologger-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion selftest-springboot-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>net.oneandone.httpselftest</groupId>
<artifactId>selftest-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3.4</version>
</parent>

<artifactId>selftest-springboot-example</artifactId>
Expand Down

0 comments on commit 237f36e

Please sign in to comment.