Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #13 from adelosa/release/0.4.1
Browse files Browse the repository at this point in the history
Release 0.4.1
  • Loading branch information
adelosa committed Dec 16, 2015
2 parents 2a17e10 + 4ac795f commit ad901a0
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 17 deletions.
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
.. :changelog:
History
-------
=======
0.4.1 (2015-12-16)
------------------
* Additional data elements added to default config file.

0.4.0 (2015-10-05)
------------------
* Now supporting python 2.6 (for all those still using RHEL 6)
Expand Down
2 changes: 1 addition & 1 deletion mciutil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@

__author__ = 'Anthony Delosa'
__email__ = '[email protected]'
__version__ = '0.4.0'
__version__ = '0.4.1'
2 changes: 1 addition & 1 deletion mciutil/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"""
__author__ = 'Anthony Delosa'
__email__ = '[email protected]'
__version__ = '0.1.0'
__version__ = '0.4.1'
15 changes: 11 additions & 4 deletions mciutil/cli/mideu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,20 +132,27 @@ output_data_elements:
- DE24
- DE25
- DE26
- DE30
- DE31
- DE33
- DE37
- DE38
- DE40
- DE41
- DE42
- DE48
- DE49
- DE50
- DE63
- DE71
- DE94
- DE73
- DE23
- DE40
- DE63
- DE93
- DE94
- DE95
- DE100
- PDS0023
- PDS0052
- PDS0122
- PDS0148
- PDS0158
- PDS0165
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name='mciutil',
version='0.4.0',
version='0.4.1',
description='MasterCard file utilities',
long_description=readme + '\n\n' + history,
author='Anthony Delosa',
Expand Down
21 changes: 13 additions & 8 deletions tests/test_mideu.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,19 @@

TEST_ASCII_IPM_FILENAME = "build/test/test_ascii_ipm.in"
TEST_EBCDIC_IPM_FILENAME = "build/test/test_ebcdic_ipm.in"
HEADER_LINE = ("MTI,DE2,DE3,DE4,DE12,DE14,DE22,DE23,DE24,DE25,DE26,"
"DE31,DE33,DE37,DE38,DE42,DE49,DE71,DE94,DE73,DE23,"
"DE40,DE63,PDS0023,PDS0052,PDS0148,PDS0158,PDS0165,"
"DE43_NAME,DE43_SUBURB,DE43_POSTCODE\n")
DETAIL_LINE = ("1144,444455*******555,111111,000000009999,201508151715,"
",123456789012,,333,,1234,57995799120000001230612,"
"123456,,123456,579942111111111,999,12345678,999999,,,"
",0000000000000001,,,,,,BIG BOBS,ANNERLEY,4103\n")
HEADER_LINE = (
"MTI,DE2,DE3,DE4,DE12,DE14,DE22,DE23,DE24,DE25,DE26,DE30,DE31,DE33,"
"DE37,DE38,DE40,DE41,DE42,DE48,DE49,DE50,DE63,DE71,DE73,DE93,DE94,"
"DE95,DE100,PDS0023,PDS0052,PDS0122,PDS0148,PDS0158,PDS0165,DE43_NAME,"
"DE43_SUBURB,DE43_POSTCODE\n"
)

DETAIL_LINE = (
"1144,444455*******555,111111,000000009999,201508151715,,123456789012,"
",333,,1234,,57995799120000001230612,123456,,123456,,,579942111111111,"
"0001001Y,999,,0000000000000001,12345678,,,999999,,,,,,,,,BIG BOBS,"
"ANNERLEY,4103\n"
)


class CommandLineTestCase(TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py35
envlist = py26, py27, py34

[testenv]
setenv =
Expand Down

0 comments on commit ad901a0

Please sign in to comment.