Skip to content

Commit

Permalink
Merge pull request #20 from jverzani/version_bump
Browse files Browse the repository at this point in the history
add compat to Project.toml
  • Loading branch information
jverzani authored Jul 18, 2019
2 parents 168ad8e + b0621bc commit 70693fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
IntervalArithmetic = "≥ 0.15.0"
RecipesBase = "≥ 0.5.0"
julia = "≥ 1.0.0"
4 changes: 2 additions & 2 deletions src/plot_recipe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ end
## N, M give no. of pixels 2^N by 2^M
## red and black are used for colors.
@recipe function f(p::Predicate; #, x=(-5,5), y=(-5,5);
N=8,
M=8, # oddly m as keyword fails. 9/8 too slow
N=10,
M=10, # oddly m as keyword fails. 9/8 too slow
red=nothing, # or :red ...
black=:black,
map=nothing # union(Nothing, Function...)
Expand Down

3 comments on commit 70693fa

@jverzani
Copy link
Owner 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 updated: JuliaRegistries/General/2113

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 v0.6.0 -m "<description of version>" 70693fa8eb7d777d80f8facdd529015852bda9e5
git push origin v0.6.0

@jverzani
Copy link
Owner Author

Choose a reason for hiding this comment

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

Hopefully that works

Please sign in to comment.