Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move "Creating Packages" to Julia docs #3690

Merged
merged 4 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, """
# [**11.** REPL Mode Reference](@id REPL-Mode-Reference)
# [**10.** 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: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ 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 @@
# [**12.** API Reference](@id API-Reference)
# [**11.** 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 @@
# [**8.** Artifacts](@id Artifacts)
# [**7.** 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: 2 additions & 0 deletions docs/src/basedocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ 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 @@
# [**6.** Compatibility](@id Compatibility)
# [**5.** 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
Loading