Skip to content

Commit

Permalink
version bump (#330)
Browse files Browse the repository at this point in the history
* version bump

* add ImageIO dependency to docs
  • Loading branch information
jverzani authored Oct 1, 2022
1 parent 05b12cf commit f6dd091
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Roots"
uuid = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
version = "2.0.5"
version = "2.0.6"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
5 changes: 3 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19"
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
IntervalRootFinding = "d2bf35a9-74e0-55ec-b149-d360ff49b807"
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
2 changes: 1 addition & 1 deletion docs/src/roots.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ The fact that ``f`` is monotonic, ensures that a bracket of ``[a,b]`` can be use
Here we numerically find the inverse function of ``f(x) = x - \sin(x)``:

```@example roots
using Plots; unicodeplots() # hide
using Plots, Roots; unicodeplots() # hide
f(x) = x - sin(x)
a, b = 0, 5pi
plot(inverse_function(f, a, b), f(a), f(b))
Expand Down

2 comments on commit f6dd091

@jverzani
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/69364

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.0.6 -m "<description of version>" f6dd091fab2c2f3a38078d3d7c5d9e2fe79fe257
git push origin v2.0.6

Please sign in to comment.