Skip to content

Commit

Permalink
Revert "Move "Creating Packages" to Julia docs" (#3818)
Browse files Browse the repository at this point in the history
* Revert "Move "Creating Packages" to Julia docs (#3690)"

* update to latest doc upstream

* fixup name of header
  • Loading branch information
KristofferC authored and KristofferC committed May 9, 2024
1 parent 38ad993 commit a6900c0
Show file tree
Hide file tree
Showing 10 changed files with 656 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/generate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ end
function generate()
io = IOBuffer()
println(io, """
# [**10.** REPL Mode Reference](@id REPL-Mode-Reference)
# [**11.** REPL Mode Reference](@id REPL-Mode-Reference)
This section describes available commands in the Pkg REPL.
The Pkg REPL mode is mostly meant for interactive use,
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ makedocs(
"getting-started.md",
"managing-packages.md",
"environments.md",
"creating-packages.md",
"compatibility.md",
"registries.md",
"artifacts.md",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/api.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [**11.** API Reference](@id API-Reference)
# [**12.** API Reference](@id API-Reference)

This section describes the functional API for interacting with Pkg.jl.
It is recommended to use the functional API, rather than the Pkg REPL mode,
Expand Down
2 changes: 1 addition & 1 deletion docs/src/artifacts.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [**7.** Artifacts](@id Artifacts)
# [**8.** Artifacts](@id Artifacts)

`Pkg` can install and manage containers of data that are not Julia packages. These containers can contain platform-specific binaries, datasets, text, or any other kind of data that would be convenient to place within an immutable, life-cycled datastore.
These containers, (called "Artifacts") can be created locally, hosted anywhere, and automatically downloaded and unpacked upon installation of your Julia package.
Expand Down
2 changes: 0 additions & 2 deletions docs/src/basedocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ such as installing, updating and removing packages.
version compatibility (`[compat]`), environments, registries, etc.,
it is highly recommended to read the full manual, which is available here:
[https://pkgdocs.julialang.org](https://pkgdocs.julialang.org).
For a tutorial on creating packages, see
[Creating Packages](https://docs.julialang.org/en/v1/tutorials/creating-packages/).

```@eval
import Markdown
Expand Down
2 changes: 1 addition & 1 deletion docs/src/compatibility.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [**5.** Compatibility](@id Compatibility)
# [**6.** Compatibility](@id Compatibility)

Compatibility refers to the ability to restrict the versions of the dependencies that your project is compatible with.
If the compatibility for a dependency is not given, the project is assumed to be compatible with all versions of that dependency.
Expand Down
Loading

0 comments on commit a6900c0

Please sign in to comment.