Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: iliekturtles/uom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.28.0
Choose a base ref
...
head repository: iliekturtles/uom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.29.0
Choose a head ref
  • 13 commits
  • 12 files changed
  • 4 contributors

Commits on Jun 15, 2020

  1. Add constants to Angle representing half and full turns

    Various trigonometric computations require Angle constants of these values
    but as construction via Angle::new is not possible in constants, this uses
    fixed storage types and base units to directly construct Quantity literals
    to wrap the standard libraries constants for π.
    adamreichold committed Jun 15, 2020
    Configuration menu
    Copy the full SHA
    f78d4dd View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2020

  1. Merge pull request #191 from adamreichold/turns-as-angle-constants

    Add constants to Angle representing half and full turns
    iliekturtles committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    0bc0b92 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2020

  1. Configuration menu
    Copy the full SHA
    af3d93b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #194 from AnickaBurova/foot-candle

    Added foot-candle unit to luminance
    iliekturtles committed Jun 22, 2020
    Configuration menu
    Copy the full SHA
    a8c0050 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. Use f{32|64}::powi instead of Typenum::Pow::powi.

    In Rust 1.45 the upgrade to LLVM 10.0 changes the behavior of
    `f{32|64}::powi` on Windows. This commit changes the `Quantity::powi`
    implementation to simplify down to `f{32|64}::powi` instead of using
    `Typenum::Pow::powi` which uses a less precise algorithm. Resolves #192.
    iliekturtles committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    3f92425 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2020

  1. Configuration menu
    Copy the full SHA
    cc4c66a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9187763 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

  1. Merge pull request #196 from adamreichold/add-solid-angle

    Add support for solid angles mostly based on what we do for angles.
    iliekturtles committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    5dca5a6 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2020

  1. Remove From/Into impls for Angle and SolidAngle.

    Impls were problematic because they assume the value is always in
    radians. Using explicit conversions that include the unit should be used
    instead. Impls were likely added when `Angle` was added and adapted from
    `Ratio`. Resolves #188.
    iliekturtles committed Jul 27, 2020
    Configuration menu
    Copy the full SHA
    2cc5deb View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2020

  1. Change examples to use Display instead of Debug.

    mks and si examples are updated to use `format_args` or
    `into_format_args` as appropriate so that the `Display` trait can be
    used to display quantities in specific units. Part of #123.
    iliekturtles committed Aug 3, 2020
    Configuration menu
    Copy the full SHA
    ae82174 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2020

  1. Added prefixes for electronvolt (eV).

    Updated electronvolt definition, fixed KeV -> keV.
    Atmelfan committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    ff3e790 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #200 from Atmelfan/master

    Add prefixes for electronvolt (eV).
    iliekturtles committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    d061f92 View commit details
    Browse the repository at this point in the history
  3. Release v0.29.0.

    iliekturtles committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    03381a9 View commit details
    Browse the repository at this point in the history
Loading