arrow v0.15.3 Release Notes

Release Date: 2019-11-02 // over 4 years ago
    • [NEW] factory.get() can now create arrow objects from a ISO calendar tuple, for example:

    .. code-block:: python

    >>> arrow.get((2013, 18, 7))
    <Arrow [2013-05-05T00:00:00+00:00]>
    
    • ๐Ÿ“œ [NEW] Added a new token x to allow parsing of integer timestamps with milliseconds and microseconds.
    • ๐Ÿ“œ [NEW] Formatting now supports escaping of characters using the same syntax as parsing, for example:

    .. code-block:: python

    >>> arw = arrow.now()
    >>> fmt = "YYYY-MM-DD h [h] m"
    >>> arw.format(fmt)
    '2019-11-02 3 h 32'
    
    • ๐ŸŒ [NEW] Added humanize week granularity translations for Chinese, Spanish and Vietnamese.
    • ๐Ÿ“œ [CHANGE] Added ParserError to module exports.
    • ๐Ÿ‘€ [FIX] Added support for midnight at end of day. See #703 <https://github.com/crsmithdev/arrow/issues/703>_ for details.
    • ๐ŸŽ [INTERNAL] Created Travis build for macOS.
    • โœ… [INTERNAL] Test parsing and formatting against full timezone database.