Announcements
- Fixed accidental aliasing of "yr" to "a" 🐛
We had accidentally assigned "yr" to be an alias for "a".
This meant we had the following behaviour
python
>>> from openscm_units import unit_registry
>>> val = unit_registry.Quantity(1, "yr")
>>> val
<Quantity(1, 'a')>
This is now fixed so that if you pass in "yr", it stays as yr i.e. you get
python
>>> from openscm_units import unit_registry
>>> val = unit_registry.Quantity(1, "yr")
>>> val
<Quantity(1, 'yr')>
Changes
* Change 1
* 9967e02 bump: version 0.6.1a0 -> 0.6.1
* b86c38e CHANGELOG
* 75e66e3 Pass tests
* db72f89 Add failing tests