Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
changed version from 3.0.2 to 3.0.3
  • Loading branch information
ThomasEnioKohler committed May 8, 2023
1 parent 1a4a8fd commit bac2268
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions iso20022-generator/generator-test/GeneratorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void InitGenerator()
{
UniqueDocumentId = Guid.NewGuid().ToString().Substring(0, 34), // Must be unique for the bank within 90 days
ContactDetailsName = "enio AG",
ContactDetailsOther = "3.0.2",
ContactDetailsOther = "3.0.3",
AutoCalculateControlSum = true
// SenderBic = "ZKBKCHZZ80A" //ZKB
},
Expand All @@ -26,7 +26,7 @@ public void InitGenerator()
SenderBic = "CRESCHZZ80A", //CS
});

var p1 = generator.AddPaymentInfo(DateTime.Now.AddDays(10), "TRA", batchBookSpezified:true);
var p1 = generator.AddPaymentInfo(DateTime.Now.AddDays(10), "TRA", batchBookingSpezified:true);

generator.AddTransaction(p1, new Receiver
{
Expand Down Expand Up @@ -93,7 +93,7 @@ public void InitGenerator()
{
UniqueDocumentId = Guid.NewGuid().ToString().Substring(0, 34), // Must be unique for the bank within 90 days
ContactDetailsName = "enio AG",
ContactDetailsOther = "3.0.2",
ContactDetailsOther = "3.0.3",
AutoCalculateControlSum = true
// SenderBic = "ZKBKCHZZ80A" //ZKB
},
Expand Down Expand Up @@ -132,7 +132,7 @@ public void InitGenerator()
{
UniqueDocumentId = Guid.NewGuid().ToString().Substring(0, 34), // Must be unique for the bank within 90 days
ContactDetailsName = "enio AG",
ContactDetailsOther = "3.0.2",
ContactDetailsOther = "3.0.3",
AutoCalculateControlSum = true
},
new Sender()
Expand Down
3 changes: 3 additions & 0 deletions iso20022-generator/iso20022-generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ https://www.six-group.com/dam/download/banking-services/interbank-clearing/de/st
| IBAN/QRR | 3 | TransactionIBANandQRR | |
| IBAN/SCOR | 3 | TransactionIBANandSCOR | |

# Version Information
## 3.0.3 (2023-05-08)
- added boolean value batchBookingSpezified to enable export of pmtInf.BtchBookg flag properly

# Version Information
## 3.0.2 (2023-04-13)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class Initialization

private decimal _controlSum;
private string _contactDetailsName = "iso20022-Generator / enio AG";
private string _contactDetailsOther = "3.0.2";
private string _contactDetailsOther = "3.0.3";

public decimal ControlSum
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<PackageLicenseUrl></PackageLicenseUrl>
<PackageId>iso20022Generator</PackageId>
<Product>iso20022Generator</Product>
<Version>3.0.2</Version>
<Version>3.0.3</Version>
<Copyright>enio AG</Copyright>
<Description>This generator library helps you building iso 20022 artifacts with the minimum amount of information you need to set up valid documents. Currently pain.001 files are only supported.</Description>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<AssemblyVersion>3.0.3.0</AssemblyVersion>
<FileVersion>3.0.3.0</FileVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
Expand Down

0 comments on commit bac2268

Please sign in to comment.