Releases: JuliaPhysics/Measurements.jl
Releases · JuliaPhysics/Measurements.jl
v1.0.1
v1.0.0
Breaking Changes
- Julia 0.7 is required, support for previous versions was dropped.
- Documentation has been moved to https://juliaphysics.github.io/Measurements.jl/stable/.
v0.5.1
New Features
- You can easily plot vectors of
Measurement
objects using thePlots.jl
package. The uncertainties of the numbers will automatically be used as sizes of the errorbars. @uncertain
macro automatically converts all arguments of the function call toMeasurement
type, so that the user does not have to manually cast them.- New method for
measurement(x::Measurement)
returningx
. - New methods for
Measurements.value(x::Real)
returningx
andMeasurements.uncertainty(x::Real)
returningzero(x)
. - The package now supports pretty printing in Juno (#12, #13)
- The tage used internally to identify an independent quantity is now a (thread-safe) counter, rather than a (thread-unsafe) random number (#15, #16).
- New
show
method fortext/latex
MIME, used in Jupyter notebooks.