Skip to content

Commit

Permalink
bump pluto version for export
Browse files Browse the repository at this point in the history
  • Loading branch information
Pangoraw authored Feb 26, 2022
1 parent 7a79548 commit 2f126a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ExportNotebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
run: julia -e 'using Pkg;
Pkg.activate(mktempdir());
Pkg.add([
Pkg.PackageSpec(name="PlutoSliderServer", rev="b56c68176804b6480c793918033bd33d26d39ef5"),
Pkg.PackageSpec(name="Pluto", rev="18b3517c5567410c0f35fbd2d88e4e79c7d2c56b"),
Pkg.PackageSpec(name="PlutoSliderServer", version="0.3"),
Pkg.PackageSpec(name="Pluto", version="0.18"),
]);

import PlutoSliderServer;
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 = "PlutoLinks"
uuid = "0ff47ea0-7a50-410d-8455-4348d5de0420"
authors = ["Paul Berg <[email protected]>"]
version = "0.1.4"
version = "0.1.5"

[deps]
FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ This package contains a set of utilities built using [PlutoHooks.jl](https://git
- `@use_task`: Run a process and relay it's output to the rest of your notebook.
- `@use_file`: Watch a file and reload the content when it changes.
- `@ingredients`: Watch a Julia file and automatically run the dependent cells when the code changes.
- `@use_debounce`: Wait for a variable value to stabilize before updating its output.

2 comments on commit 2f126a2

@Pangoraw
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 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 created: JuliaRegistries/General/55546

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 v0.1.5 -m "<description of version>" 2f126a279d862fbf0e63c42e4473585a703c1464
git push origin v0.1.5

Please sign in to comment.