Skip to content

Commit

Permalink
Documentation for release (#152)
Browse files Browse the repository at this point in the history
* Documentation for next release

* Correct check to include "rc2"

* Updated with new release number
  • Loading branch information
uhurusurfa authored Mar 24, 2019
1 parent 37f6048 commit 0e21fa5
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.1</version>
<version>2.8.0</version>
</parent>

<artifactId>openas2-osgi</artifactId>
Expand Down
12 changes: 7 additions & 5 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# OpenAS2 Server
# Version 2.7.2
# Version 2.8.0
# RELEASE NOTES
-----
The OpenAS2 project is pleased to announce the release of OpenAS2 2.7.2
The OpenAS2 project is pleased to announce the release of OpenAS2 2.8.0

The release download file is: OpenAS2Server-2.7.2.zip
The release download file is: OpenAS2Server-2.8.0.zip

The zip file contains a PDF document (OpenAS2HowTo.pdf) providing information on installing and using the application.

Version 2.7.2 - 2019-xx-yy
This is a minor enhancement release:
Version 2.8.0 - 2019-02-23
This is a an enhancement release:
**IMPORTANT NOTE**: Please review upgrade notes if you are upgrading

1. Add DB tracking message when pending information file detected indicating failed receipt of an MDN.
2. Changed the partnerships.xml sample to make it easier to understand and proivide examplke for additional partners
3. Enhanced documentation to reflect changes in the partnerships.xml and some cleaning uop and adding more detail.
4. Provide ability to define a custom table name for tracking messages to a database
5. Update documentation for mechanism to use a different table name in the tracking database

##Upgrade Notes
See the openAS2HowTo appendix for the general process on upgrading OpenAS2.
Expand Down
2 changes: 1 addition & 1 deletion Remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.1</version>
<version>2.8.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- DO NOT CHANGE THIS "groupId" WITHOUT CHANGING XMLSession.getManifestAttributes.MANIFEST_VENDOR_ID_ATTRIB -->
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.1</version>
<version>2.8.0</version>
</parent>

<artifactId>openas2-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ protected OutputEncryptor getOutputEncryptor(String algorithm)
} else if (algorithm.equalsIgnoreCase(CRYPT_3DES))
{
asn1ObjId = new ASN1ObjectIdentifier(PKCSObjectIdentifiers.des_EDE3_CBC.getId());
} else if (algorithm.equalsIgnoreCase(CRYPT_RC2_CBC) || algorithm.equalsIgnoreCase(CRYPT_RC2_CBC))
} else if (algorithm.equalsIgnoreCase(CRYPT_RC2) || algorithm.equalsIgnoreCase(CRYPT_RC2_CBC))
{
asn1ObjId = new ASN1ObjectIdentifier(PKCSObjectIdentifiers.RC2_CBC.getId());
keyLen = 40;
Expand Down
12 changes: 11 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
ersion 2.7.1 - 2019-03-11
Version 2.8.0 - 2019-02-23
This is a an enhancement release:
**IMPORTANT NOTE**: Please review upgrade notes in the RELEASE-NOTES.md if you are upgrading

1. Add DB tracking message when pending information file detected indicating failed receipt of an MDN.
2. Changed the partnerships.xml sample to make it easier to understand and proivide examplke for additional partners
3. Enhanced documentation to reflect changes in the partnerships.xml and some cleaning uop and adding more detail.
4. Provide ability to define a custom table name for tracking messages to a database
5. Update documentation for mechanism to use a different table name in the tracking database

Version 2.7.1 - 2019-03-11
This is a minor enhancement release:
**IMPORTANT NOTE**: Please review upgrade notes in the RELEASE-NOTES.md if you are upgrading

Expand Down
Binary file modified docs/OpenAS2HowTo.odt
Binary file not shown.
Binary file modified docs/OpenAS2HowTo.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.1</version>
<version>2.8.0</version>
<name>OpenAS2</name>
<packaging>pom</packaging>

Expand Down

0 comments on commit 0e21fa5

Please sign in to comment.