Skip to content

Commit

Permalink
Fixed reprs of volt and ohm
Browse files Browse the repository at this point in the history
  • Loading branch information
KarolS committed Mar 25, 2014
1 parent 2b4bd28 commit 0402dce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
units - CHANGELOG
=================


version 0.1.1
-------------

* FIXED: conversion between `volt` and `volt_repr`, and between `ohm` and `ohm_repr`

version 0.1.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ units

Published under MIT License.

Current version: 0.1.0
Current version: 0.1.1
----------------------

[Changelog.](CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import sbt.Defaults._
object UnitsBuild extends Build {


val VERSION = "0.1.0"
val VERSION = "0.1.1"


type Sett = Project.Setting[_]
Expand Down
2 changes: 1 addition & 1 deletion units/src/main/scala/units/SI.scala
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ object SI {
implicit val implicit__watt_alias = alias[watt, watt_repr]
implicit val implicit__hertz_alias = alias[hertz, hertz_repr]
implicit val implicit__coulomb_alias = alias[coulomb, coulomb_repr]
implicit val implicit__volt_alias = alias[ohm, ohm_repr]
implicit val implicit__volt_alias = alias[volt, volt_repr]
implicit val implicit__ohm_alias = alias[ohm, ohm_repr]
implicit val implicit__pascal_alias = alias[pascal, pascal_repr]
implicit val implicit__farad_alias = alias[farad, farad_repr]
Expand Down

0 comments on commit 0402dce

Please sign in to comment.