Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/stevengj/NBInclude.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Feb 10, 2020
2 parents 24b1739 + 788496b commit 3a80f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ to execute all of the code cells in the IJulia notebook `myfile.ipynb`. Similar

The goal of this package is to make notebook files just as easy to incorporate into Julia programs as ordinary Julia (`.jl`) files, giving you the advantages of a notebook (integrated code, formatted text, equations, graphics, and other results) while retaining the modularity and re-usability of `.jl` files.

Note: Scoping rules have changed between Julia 0.6 and Julia 1.0. Running a notebook as `@nbinclude(foo.ipynb, softscope=true)` will load notebooks as they work for interactive use in the IJulia kernel ("soft" global scoping, or 0.6-style). That flag's default value, `false`, will load notebooks with the "hard" scoping rule of Julia 1.0 (e.g. in `include`); see the [SoftGlobalScope package](https://github.com/stevengj/SoftGlobalScope.jl) for more details.
Note: Scoping rules have changed between Julia 0.6 and Julia 1.0. Running a notebook as `@nbinclude("foo.ipynb"; softscope=true)` will load notebooks as they work for interactive use in the IJulia kernel ("soft" global scoping, or 0.6-style). That flag's default value, `false`, will load notebooks with the "hard" scoping rule of Julia 1.0 (e.g. in `include`); see the [SoftGlobalScope package](https://github.com/stevengj/SoftGlobalScope.jl) for more details.

Key features of NBInclude are:

Expand Down

2 comments on commit 3a80f76

@stevengj
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/9203

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 v2.2.0 -m "<description of version>" 3a80f766033f34716e9df897fe828d8bc9f2c9f4
git push origin v2.2.0

Please sign in to comment.