Skip to content

Latest commit

 

History

History
107 lines (70 loc) · 3.67 KB

CHANGELOG.md

File metadata and controls

107 lines (70 loc) · 3.67 KB

Changelog

v0.6.0 (06/07/2019)

Libra has been released for 2.13.0!

Notable PRs

  • [#71] (#71) Upgrade to Scala 2.13

v0.5.0 (04/03/2019)

Libra has been revived!

This release drops Typelevel Scala as a result of some long-standing issues. Integer literals in type signatures must now be referred through through a shapeless Witness.

The Lightbend Scala versions are 2.11.11 and 2.12.8.

Thank you @tpolecat for undertaking this stellar task 🌠 !

Notable PRs

  • [#67] (#67) Update dependencies, remove TLS

v0.4.0 (02/04/2018)

This release brings a huge revamp to the internal package structure, making Libra a lot easier to extend with new units. The imports are now:

import libra._
import libra.implicits._

Upgrades

Shapeless has been upgraded to 2.3.3

Notable PRs

  • #60 Refactor package structure
  • #59 Add as method to align quantities of the same dimension
  • #58 Upgrade shapeless to 2.3.3

v0.3.0 (26/12/2017)

This release has been very long in coming, and brings a whole host of changes, the most notable being the removal of the user dependency on Typelevel Scala and the new angular units.

Libra has it's first contributors! Thank you @DanielaSfregola and @ldrygala for your fantastic work! 🎉

New units

Hours and days are now present in the imperial package. We also support angular units! Thanks to the work of @ldrygala, degrees, arcminues, arcseconds, gradians, radians and turns are now present in the nonsi package.

New Typeclasses

The following spire / algebra typeclasses have been added to Quantity

  • Eq
  • Order
  • PartialOrder
  • Signed
  • AdditiveSemigroup
  • AdditiveMonoid
  • AdditiveGroup
  • AdditiveCSemigroup
  • AdditiveCMonoid
  • AdditiveAbGroup
  • MetricSpace
  • CoordinateSpace
  • VectorSpace
  • InnerProductSpace

These are dependent on the typeclasses of the underlying numeric type.

New operations

Quantities now support Euclidean division with spire's /~ quotient operator

Upgrades

The scala versions have been upgraded to 2.11.11 and 2.12.4

The use of ValueOf, and consequently the user dependency on Typelevel Scala. Users can now use the Lightbend Scala compiler.

Notable PRs

  • #23 Add more typeclasses
  • #27 Remove Typelevel Scala's ValueOf
  • #30 Add time units
  • #35 Add Euclidean division
  • #40 Add andular units: degree, arcminute arcsecond by @DanielaSfregola
  • #44 Rename Unit to UnitOfMeasure
  • #46 Add angular velocity units: degrees per second, arcminutes per second, arcseconds per second by @ldrygala
  • #49 Add angular units: radian by @ldrygala
  • #51 Add angular units: gradian, turn by @ldrygala
  • #53 Add angular velocity units: radians per second, gradians per second, turns per second

v0.2.0 (23/04/2017)

  • Add units and conversions
  • Support scalar multiplication
  • Make Quantity a value class
  • Add fractional exponents to dimensions
  • Remove metric exponent from Quantity

v0.1.0 (01/03/2017)

  • First release