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

Direct ranges in fields e.g. foo: 0..255 #174

Merged
merged 4 commits into from
Apr 19, 2023
Merged

Commits on Apr 14, 2023

  1. Direct ranges in fields e.g. foo: 0..255

    Previously they were only supported at the top-level.
    Incorrect parsing lead these to be treated as a constant of the lower
    bound.
    
    Fixes #172
    rooooooooob committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    d5b2f94 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. integer range test coverage + fix for >isize::MAX ranges

    better coverage between top-level vs signed_ints member for various
    ranges that map to primitives
    
    fix for when >isize::MAX limits are used as we used `isize` when `i128`
    would be better for covering all possibilities (`i64`, `u64`, `f64`)
    
    float ranges now panic when they have a decimal part as we were silently
    ignoring this. Issue created: #178
    rooooooooob committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    c2a2d32 View commit details
    Browse the repository at this point in the history
  2. run cargo fmt

    rooooooooob committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    cee12b7 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. clippy fixes

    rooooooooob committed Apr 18, 2023
    Configuration menu
    Copy the full SHA
    e914c6f View commit details
    Browse the repository at this point in the history