Skip to content

Commit

Permalink
🐸 Run all fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed May 6, 2020
1 parent 8fef806 commit d63dd23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "Pluto"
uuid = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
license = "MIT"
authors = ["Fons van der Plas <[email protected]>", "Mikołaj Bochenski <[email protected]>"]
version = "0.8.1"
version = "0.8.2"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion assets/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ function requestRunAllChangedRemoteCells() {
function requestRunAllRemoteCells() {
refreshAllCompletionPromise()

const uuids = Array.from(window.localCells).map(cellNode => {
const uuids = Object.values(window.localCells).map(cellNode => {
cellNode.classList.add("running")
return cellNode.id
})
Expand Down

2 comments on commit d63dd23

@fonsp
Copy link
Owner Author

@fonsp fonsp commented on d63dd23 May 6, 2020

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/14260

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.8.2 -m "<description of version>" d63dd23d9fddf2e11988a67a1ba2c279b3fc693e
git push origin v0.8.2

Please sign in to comment.