Skip to content

Commit

Permalink
RELEASE v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bostonaholic committed Jun 19, 2014
1 parent 01657fd commit 57538bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
=== v0.5.0 / 2014-06-18

* Enhancements
* Expose BAI Type Codes as hash-map

=== v0.4.0 / 2014-04-14

* Enhancements
Expand All @@ -8,8 +13,6 @@
* Enhancements
* Nest record structures to help get accounts and transactions from parents.

* Bug Fixes

=== v0.2.0 / 2014-01-29

* Enhancements
Expand All @@ -24,8 +27,6 @@
* Account Identifier Records (:type-code 03) now have combined
:summaries field

* Bug Fixes

=== v0.1.0 / 2014-01-29

* Initial Release
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ More documentation can be found on the [wiki](https://github.com/testdouble/baiz
[Leiningen](https://github.com/technomancy/leiningen/):

```
[baizen "0.4.0"]
[baizen "0.5.0"]
```

[Maven](http://maven.apache.org/):
Expand All @@ -25,7 +25,7 @@ More documentation can be found on the [wiki](https://github.com/testdouble/baiz
<dependency>
<groupId>baizen</groupId>
<artifactId>baizen</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</dependency>
```

Expand Down Expand Up @@ -63,11 +63,11 @@ user=> (baizen/parse "test-resources/BAI-File-From-Bank-Simple.bai")
({:funds-type "",
:item-count "",
:amount "+00000004060801",
:type-code "015"}
:type-code {:code "015" :transaction "NA" :level "Status" :description "Closing Ledger"}}
{:funds-type "",
:item-count "",
:amount "+00000003836014",
:type-code "045"}),
:type-code {:code "045" :transaction "NA" :level "Status" :description "Closing Available"}}),
:currency-code "",
:customer-account-number "0101999999",
:record-code "03"},
Expand All @@ -76,7 +76,7 @@ user=> (baizen/parse "test-resources/BAI-File-From-Bank-Simple.bai")
:bank-reference-number "00087829876",
:funds-type "Z",
:amount "000000000346685",
:type-code "175",
:type-code {:code "175" :transaction "CR" :level "Detail" :description "Check Deposit Package"},
:record-code "16"}),
:account-trailer
{:number-of-records "23",
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject baizen "0.5.0-SNAPSHOT"
(defproject baizen "0.5.0"
:description "BAI file format parser"
:url "https://github.com/testdouble/baizen"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 57538bd

Please sign in to comment.