* ``mllp_send --version`` prints version number * ``mllp_send --loose`` algorithm modified to allow multiple messages per file. The algorithm now splits messages based upon the presumed start of a message, which must start with ``MSH|^~\&|``
0.2.3
--------------------
* ``mllp_send --loose`` accepts & converts Unix newlines in addition to Windows newlines
0.2.2
---------------------
* :ref:`mllp_send <mllp-send>` now takes the ``--loose`` options, which allows sending HL7 messages that may not exactly meet the standard (Windows newlines separating segments instead of carriage returns).
0.2.1
-------------------
* Added MLLP client (:py:class:`hl7.client.MLLPClient`) and command line tool, :ref:`mllp_send <mllp-send>`.
0.2.0
-----------------
* Converted ``hl7.segment`` and ``hl7.segments`` into methods on :py:class:`hl7.Message`. * Support dict-syntax for getting Segments from a Message (e.g. ``message['OBX']``) * Use unicode throughout python-hl7 since the HL7 spec allows non-ASCII characters. It is up to the caller of :py:func:`hl7.parse` to convert non-ASCII messages into unicode. * Refactored from single hl7.py file into the hl7 module. * Added Sphinx `documentation <http://python-hl7.readthedocs.org>`_. Moved project to `github <http://github.com/johnpaulett/python-hl7>`_.