From 85117120f7d285c62584650eb10b4cea8b97232e Mon Sep 17 00:00:00 2001 From: Michael Goerz Date: Mon, 3 Jun 2024 09:33:21 -0400 Subject: [PATCH] Release 1.0.0 --- .github/workflows/CI.yml | 13 +++++++------ CHANGELOG.md | 8 ++++++++ Project.toml | 2 +- docs/make.jl | 1 + docs/src/creating.md | 4 ++-- docs/src/index.md | 5 +++++ 6 files changed, 24 insertions(+), 9 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5fe5303..2a07180 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -37,7 +37,7 @@ jobs: arch: x86 steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} - uses: julia-actions/cache@v1 @@ -56,15 +56,16 @@ jobs: - name: "Summarize coverage" run: julia --project=test -L devrepl.jl -e 'display(show_coverage())' - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: - files: lcov.info + file: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} testoldest: name: Test Lower Compat Bounds runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: 1.6 - uses: julia-actions/cache@v1 @@ -90,7 +91,7 @@ jobs: pages: write steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: '1' - name: "Instantiate build environment" @@ -115,7 +116,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: '1' - name: Install JuliaFormatter and format diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..885f6de --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Release Notes + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## Version 1.0.0 - 2024-06-03 + +* Initial stable release diff --git a/Project.toml b/Project.toml index 5daf6b9..cc8ca9c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DocInventories" uuid = "43dc2714-ed3b-44b5-b226-857eda1aa7de" authors = ["Michael Goerz "] -version = "0.4.1" +version = "1.0.0" [deps] CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193" diff --git a/docs/make.jl b/docs/make.jl index 72c96c0..53990ca 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -12,6 +12,7 @@ GITHUB = "https://github.com/goerz/DocInventories.jl" links = InterLinks( "Julia" => ( "https://docs.julialang.org/en/v1/", + "https://docs.julialang.org/en/v1/objects.inv", joinpath(@__DIR__, "src", "inventories", "Julia.toml") ), "JuliaDocs" => ( diff --git a/docs/src/creating.md b/docs/src/creating.md index 6eeb503..447fc37 100644 --- a/docs/src/creating.md +++ b/docs/src/creating.md @@ -1,6 +1,6 @@ # Creating Inventory Files -In general, inventory files should be generated automatically by [Documenter](@extref Documenter :doc:`index`) or [Sphinx](@extref sphinx :doc:`index`). However, there are situations where producing and inventory file "by hand" make sense: +In general, inventory files should be generated automatically by [Documenter](@extref Documenter :doc:`index`) or [Sphinx](@extref sphinx :doc:`index`). However, there are situations where producing an inventory file "by hand" make sense: * A project does not provide an inventory file. Maybe its documentation is entirely in its Github README file. @@ -27,7 +27,7 @@ inventory = Inventory( nothing # hide ``` -Then, we can [`push!`](@extref Julia Base.push!) [`InventoryItems`](@ref InventoryItem) for all pages we want to include in the inventory: +Then, we can [`push!`](@extref Julia Base.push!) new [`InventoryItems`](@ref InventoryItem) for all pages we want to include in the inventory: ```@example creating diff --git a/docs/src/index.md b/docs/src/index.md index ef756a7..f76e6bd 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -56,6 +56,11 @@ to the relevant `Project.toml` file. Pages = [page for (name, page) in Main.PAGES[2:end]] ``` +## Changelog + +The `DocInventories` project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). You can find a [`CHANGELOG` for versions after `v1.0`](https://github.com/JuliaDocs/DocInventories.jl/blob/master/CHANGELOG.md) online. + + ## Related Projects * [Documenter.jl](https://documenter.juliadocs.org/stable/) — The default documentation generator in the [Julia](https://julialang.org) ecosystem. As of version `1.3.0`, `Documenter` automatically generates and deploys a ([Sphinx-format](@ref "Sphinx Inventory Format")) `objects.inv` file that enables linking into a project's documentation.