Skip to content

Commit

Permalink
Merge pull request #1887 from JuliaDocs/mp/0.27.22
Browse files Browse the repository at this point in the history
Backports for 0.27.22
  • Loading branch information
fredrikekre authored Jul 24, 2022
2 parents 186172b + 7b104e0 commit 4cc7fe1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v1
# Add DocumenterTools here to avoid resolver errors when resolving the test env
# see JuliaDocs/Documenter.jl#1887
- name: 'Workaround Pkg resolver error on 1.0'
shell: julia --project=. {0}
run: |
using Pkg
Pkg.add("DocumenterTools")
if: matrix.version == '1.0'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Documenter.jl changelog

## Version `v0.27.22`

* ![Maintenance][badge-maintenance] Documenter is now compatible with DocStringExtensions v0.9. ([#1885][github-1885], [#1886][github-1886])

## Version `v0.27.21`

* ![Bugfix][badge-bugfix] Fix a regression where Documenter throws an error on systems that do not have Git available. ([#1870][github-1870], [#1871][github-1871])
Expand Down Expand Up @@ -1080,6 +1084,8 @@
[github-1865]: https://github.com/JuliaDocs/Documenter.jl/pull/1865
[github-1870]: https://github.com/JuliaDocs/Documenter.jl/issues/1870
[github-1871]: https://github.com/JuliaDocs/Documenter.jl/pull/1871
[github-1885]: https://github.com/JuliaDocs/Documenter.jl/issues/1885
[github-1886]: https://github.com/JuliaDocs/Documenter.jl/pull/1886
<!-- end of issue link definitions -->

[julia-38079]: https://github.com/JuliaLang/julia/issues/38079
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Documenter"
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
version = "0.27.21"
version = "0.27.22"

[deps]
ANSIColoredPrinters = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
Expand All @@ -19,7 +19,7 @@ Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
ANSIColoredPrinters = "0.0.1"
DocStringExtensions = "0.4, 0.5, 0.6, 0.7, 0.8"
DocStringExtensions = "0.4, 0.5, 0.6, 0.7, 0.8, 0.9"
IOCapture = "0.2"
JSON = "0.19, 0.20, 0.21"
julia = "1"
Expand Down

2 comments on commit 4cc7fe1

@fredrikekre
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Maintenance release. See CHANGELOG.md for notable changes.

@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/64861

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.27.22 -m "<description of version>" 4cc7fe178faf79299fc230128283ff3d10e51b62
git push origin v0.27.22

Please sign in to comment.