Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 835 timezone offset allow MINUS SIGN (U+2212) (branch 0.4.x) #1087

Merged
merged 5 commits into from
Jun 12, 2023

Commits on Jun 9, 2023

  1. Add parse tests focused on timezone signage

    Add parse tests focused on timezone siganges "+", "-", and
    bad offsets
    jtmoon79 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    6e7716d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80536f2 View commit details
    Browse the repository at this point in the history
  3. Replace test_tz_ascii_str with test_timezonename_new

    Replace test `test_tz_ascii_str` with more systemtatic test
    `test_timezonename_new`.
    jtmoon79 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    14ccc13 View commit details
    Browse the repository at this point in the history
  4. timezone_offset_internal and TimeZoneName::new parse by chars

    Function `timezone_offset_internal` and `TimeZoneName::new`
    iterate over the input data by `chars()` instead of iterating
    `as_bytes()`.
    jtmoon79 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    83272d7 View commit details
    Browse the repository at this point in the history
  5. timezone allows leading MINUS SIGN (U+2212)

    Timezone signage also allows MINUS SIGN (U+2212) as
    specified by ISO 8601 and RFC 3339.
    
    Not for RFC 2822 format or RFC 8536 transition string.
    
    Issue chronotope#835
    jtmoon79 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    1f3513d View commit details
    Browse the repository at this point in the history