Skip to content

Commit 0402dce

Browse files
committed
Fixed reprs of volt and ohm
1 parent 2b4bd28 commit 0402dce

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
units - CHANGELOG
22
=================
33

4+
5+
version 0.1.1
6+
-------------
7+
8+
* FIXED: conversion between `volt` and `volt_repr`, and between `ohm` and `ohm_repr`
9+
410
version 0.1.0
511
-------------
612

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ units
55

66
Published under MIT License.
77

8-
Current version: 0.1.0
8+
Current version: 0.1.1
99
----------------------
1010

1111
[Changelog.](CHANGELOG.md)

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import sbt.Defaults._
77
object UnitsBuild extends Build {
88

99

10-
val VERSION = "0.1.0"
10+
val VERSION = "0.1.1"
1111

1212

1313
type Sett = Project.Setting[_]

units/src/main/scala/units/SI.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ object SI {
8989
implicit val implicit__watt_alias = alias[watt, watt_repr]
9090
implicit val implicit__hertz_alias = alias[hertz, hertz_repr]
9191
implicit val implicit__coulomb_alias = alias[coulomb, coulomb_repr]
92-
implicit val implicit__volt_alias = alias[ohm, ohm_repr]
92+
implicit val implicit__volt_alias = alias[volt, volt_repr]
9393
implicit val implicit__ohm_alias = alias[ohm, ohm_repr]
9494
implicit val implicit__pascal_alias = alias[pascal, pascal_repr]
9595
implicit val implicit__farad_alias = alias[farad, farad_repr]

0 commit comments

Comments
 (0)