Skip to content

Commit

Permalink
Project.toml: set the upper bound of compat (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin authored Oct 17, 2019
1 parent 09ef5ed commit 2965d95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
RecipesBase = "≥ 0.2.3"
Reexport = "≥ 0.2.0"
julia = "≥ 0.7.0"
RecipesBase = "^0"
Reexport = "^0"
Tables = "0.1, 0.2"
julia = "0.7.0, 1"

[extras]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/plotting.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ found in the Plots
[documentation](http://docs.juliaplots.org/latest/supported/).


Plotting candlestick, the ``Candlestick`` constructor requires four columns
Plotting candlestick, the `Candlestick` constructor requires four columns
exist in the input. They are `open`, `high`, `low` and `close` (case-insensitive).:

```julia
Expand Down

4 comments on commit 2965d95

@iblislin
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Error while trying to register: "Tag with name 0.16.1 already exists and points to a different commit"

@iblislin
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/4463

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.16.1 -m "<description of version>" 2965d95daf0135fb4165673b2df0ebe3013f651d
git push origin v0.16.1

Please sign in to comment.