Skip to content

v0.2.0 - 2018-10-22

Compare
Choose a tag to compare
@zionsg zionsg released this 22 Oct 03:17
· 17 commits to master since this release

Added

  • This CHANGELOG file.

Changed

  • Flatten id array in output. Difference shown below for a single data object in the output:

    // Previously
    [
        'id' => [
            'key' => '00',
            'name' => 'Payload Format Indicator',
        ],
        'length' => '02',
        'value' => '01',
        'comment' => 'Shall be the 1st data object in QR code. Shall contain value of 01.',
    ]
    
    // Now
    [
        'id' => '00',
        'name' => 'Payload Format Indicator',
        'length' => '02',
        'value' => '01',
        'comment' => 'Shall be the 1st data object in QR code. Shall contain value of 01.',
    ]
    

Removed

  • Nothing.

Fixed

  • Nothing.