Releases: JuliaTesting/Aqua.jl
Releases · JuliaTesting/Aqua.jl
v0.8.10
The changes are documented in the CHANGELOG.md
file.
v0.8.9
The changes are documented in the CHANGELOG.md
file.
v0.8.8
The changes are documented in the CHANGELOG.md
file.
v0.8.7
The changes are documented in the CHANGELOG.md
file.
v0.8.6
The changes are documented in the CHANGELOG.md
file.
v0.8.5
The changes are documented in the CHANGELOG.md
file.
v0.8.4
Aqua v0.8.4
Added
test_persistent_tasks
now accepts an optionalexpr
to run in the precompile package. (#255)- The
expr
option lets you test whether your precompile script leaves any dangling Tasks
or Timers, which would make it unsafe to use as a dependency for downstream packages.
- The
Merged pull requests:
v0.8.3
Aqua v0.8.3
Changed
test_persistent_tasks
is now less noisy. (#256)- Completely overhauled the documentation. Every test now has its dedicated page. (#250)
Merged pull requests:
- Delete old doc previews (#249) (@lgoettgens)
- Overhaul documentation (#250) (@lgoettgens)
- persistent_tasks: suppress logs from Pkg.jl (#256) (@aviatesk)
Closed issues:
v0.8.2
Aqua v0.8.2
Changed
test_persistent_tasks
no longer clears the environmetn of the subtask. Instead, it modifiesLOAD_PATH
directly to make stdlibs work. (#241)
Merged pull requests:
- Fix environments in
test_persistent_tasks
(part 2) (#241) (@lgoettgens)
v0.8.1
Aqua v0.8.1
Changed
test_persistent_tasks
now redirects stdout and stderr of the created subtask. Furthermore, the environment of the subtask gets cleared to allow default values forJULIA_LOAD_PATH
to work. (#240)
Merged pull requests:
- Fix environments in
test_persistent_tasks
(#240) (@lgoettgens)