diff --git a/CHANGELOG.md b/CHANGELOG.md index e8ee2c51..6c9291d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Use [Changelog.jl](https://github.com/JuliaDocs/Changelog.jl) to generate the changelog, and add it to the documentation. ([#277]) +- Use [Changelog.jl](https://github.com/JuliaDocs/Changelog.jl) to generate the changelog, and add it to the documentation. ([#277], [#279]) - `test_project_extras` prints failures the same on all julia versions. In particular, 1.11 and nightly are no outliers. ([#275]) diff --git a/docs/instantiate.jl b/docs/instantiate.jl index 4991cfb3..e9b2b470 100644 --- a/docs/instantiate.jl +++ b/docs/instantiate.jl @@ -9,9 +9,13 @@ cd(docs_directory) do Pkg.instantiate() # Remove Aqua again from docs/Project.toml - project_toml = TOML.parsefile(joinpath(docs_directory, "Project.toml")) - delete!(project_toml["deps"], "Aqua") + lines = readlines(joinpath(docs_directory, "Project.toml")) open(joinpath(docs_directory, "Project.toml"), "w") do io - TOML.print(io, project_toml) + for line in lines + if line == "Aqua = \"4c88cf16-eb10-579e-8560-4a9242c79595\"" + continue + end + println(io, line) + end end end