Skip to content

Commit 519356b

Browse files
committed
Merge tag 'v0.11.1' into fix-precomp
[Diff since v0.11.0](v0.11.0...v0.11.1)
2 parents 76737ff + 1b80c05 commit 519356b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DynamicQuantities"
22
uuid = "06fc5a27-2a28-4c7c-a15d-362465fb6821"
33
authors = ["MilesCranmer <miles.cranmer@gmail.com> and contributors"]
4-
version = "0.11.0"
4+
version = "0.11.1"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"

src/units.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ end
107107
@add_prefixes W (m, k, M, G)
108108
@add_prefixes C ()
109109
@add_prefixes V (p, n, μ, u, m, k, M, G)
110-
@add_prefixes F ()
111-
@add_prefixes Ω (n, μ, u, m)
112-
@add_prefixes ohm (n, μ, u, m)
110+
@add_prefixes F (f, p, n, μ, u, m)
111+
@add_prefixes Ω (n, μ, u, m, k, M, G)
112+
@add_prefixes ohm (n, μ, u, m, k, M, G)
113113
@add_prefixes T ()
114114

115115
# SI derived units
@@ -142,11 +142,11 @@ end
142142
V,
143143
)
144144
@doc(
145-
"Capacitance in Farads.",
145+
"Capacitance in Farads. Available variants: `fF`, `pF`, `nF`, `μF` (/`uF`), `mF`.",
146146
F,
147147
)
148148
@doc(
149-
"Resistance in Ohms. Available variant: `nΩ`, `μΩ` (/`uΩ`), `mΩ`. Also available is ASCII `ohm` (with variants `nohm`, `μohm` (/`uohm`), `mohm`).",
149+
"Resistance in Ohms. Available variant: `nΩ`, `μΩ` (/`uΩ`), `mΩ`, `kΩ`, `MΩ`, `GΩ`. Also available is ASCII `ohm` (with variants `nohm`, `μohm` (/`uohm`), `mohm`, `kohm`, `Mohm`, `Gohm`).",
150150
Ω,
151151
)
152152
@doc(

0 commit comments

Comments
 (0)