Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Sep 26, 2019
1 parent b1b84f7 commit 903a140
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ The subproject `as2-demo-webapp` is licensed under the Apache 2 license.

# News and noteworthy

* v4.4.4 - work in progress
* v4.4.4 - 2019-09-26
* Removed all information about the exception from the MDN (see [#94](https://github.com/phax/as2-lib/pull/94))
* Updated to ph-commons 9.3.7
* Fixed another unintentional HTTP header values quoting (see [#95](https://github.com/phax/as2-lib/issues/95))
* Fixed another unintentional HTTP header values quoting and made it configurable for receiving modules (see [#95](https://github.com/phax/as2-lib/issues/95))
* v4.4.3 - 2019-09-05
* Fixed an unintended quoting of HTTP header values when reading an MDN
* v4.4.2 - 2019-08-30
Expand Down Expand Up @@ -183,7 +183,7 @@ Add the following to your `pom.xml` to use this artifact:
<dependency>
<groupId>com.helger</groupId>
<artifactId>as2-lib</artifactId>
<version>4.4.3</version>
<version>4.4.4</version>
</dependency>
```

Expand All @@ -193,7 +193,7 @@ For the MongoDB partnership factory, add the following to your `pom.xml`:
<dependency>
<groupId>com.helger</groupId>
<artifactId>as2-partnership-mongodb</artifactId>
<version>4.4.3</version>
<version>4.4.4</version>
</dependency>
```

Expand All @@ -203,7 +203,7 @@ For the receive servlet, add the following to your `pom.xml`:
<dependency>
<groupId>com.helger</groupId>
<artifactId>as2-servlet</artifactId>
<version>4.4.3</version>
<version>4.4.4</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@

public class AS2MDNReceiverModule extends AbstractActiveNetModule
{
public AS2MDNReceiverModule ()
{}

@Override
@Nonnull
public AS2MDNReceiverHandler createHandler ()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@

public class AS2ReceiverModule extends AbstractActiveNetModule
{
public AS2ReceiverModule ()
{}

@Override
@Nonnull
public AS2ReceiverHandler createHandler ()
Expand Down

0 comments on commit 903a140

Please sign in to comment.