Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Aug 3, 2019
1 parent 32c8539 commit 0124bd8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
History of Measurements.jl
==========================

v2.1.0 (2019-0?-??)
v2.1.0 (2019-08-03)
-------------------

### New Features
Expand All @@ -12,6 +12,27 @@ v2.1.0 (2019-0?-??)
numbers with units (from the `Unitful.jl` package) and uncertainties
([#35](https://github.com/JuliaPhysics/Measurements.jl/issues/35),
[#36](https://github.com/JuliaPhysics/Measurements.jl/pull/36)).
* `measurement(s::String)` method now understands decimal uncertainty
([#44](https://github.com/JuliaPhysics/Measurements.jl/issues/44),
[#45](https://github.com/JuliaPhysics/Measurements.jl/pull/45))
* Truncated printing is now always used. `IOContext` can be used to control the
behaviour ([#40](https://github.com/JuliaPhysics/Measurements.jl/issues/40),
[#43](https://github.com/JuliaPhysics/Measurements.jl/pull/43)):
```julia
julia> using Measurements

julia> x = pi ± (ℯ/100)
3.142 ± 0.027

julia> println(IOContext(stdout, :error_digits=>0), x)
3.141592653589793 ± 0.02718281828459045

julia> println(IOContext(stdout, :error_digits=>1), x)
3.14 ± 0.03

julia> println(IOContext(stdout, :error_digits=>5), x)
3.141593 ± 0.027183
```

v2.0.0 (2019-02-10)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Measurements"
uuid = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
authors = ["Mosè Giordano <[email protected]>"]
version = "2.0.0"
version = "2.1.0"

[deps]
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
Expand Down

2 comments on commit 0124bd8

@giordano
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/2476

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v2.1.0 -m "<description of version>" 0124bd8ae5ed20c91fe0e842388ae32ed8956dca
git push origin v2.1.0

Please sign in to comment.