|
| 1 | +# InteractiveErrors.jl changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## Unreleased |
| 9 | + |
| 10 | +## [v1.0.1] - 2024-01-04 |
| 11 | + |
| 12 | +### Fixed |
| 13 | + |
| 14 | +- Do not add AST transformer when precompiling [#28] |
| 15 | + |
| 16 | +## [v1.0.0] - 2023-10-06 |
| 17 | + |
| 18 | +### Added |
| 19 | + |
| 20 | +- Switched to using package extensions [#22] |
| 21 | +- Added `PrecompileTools` workloads [#24] |
| 22 | + |
| 23 | +### Fixed |
| 24 | + |
| 25 | +- Fixes for `OhMyREPL` interface changes [#21] |
| 26 | + |
| 27 | +### Changed |
| 28 | + |
| 29 | +- Removed `Requires` from direct deps [#25] |
| 30 | + |
| 31 | +## [v0.1.6] - 2023-09-21 |
| 32 | + |
| 33 | +### Fixed |
| 34 | + |
| 35 | +- Update compat bound for `AbstractTrees` [#14] |
| 36 | + |
| 37 | +## [v0.1.5] - 2022-01-26 |
| 38 | + |
| 39 | +### Fixed |
| 40 | + |
| 41 | +- Removed vendored `FoldingTrees` [#12] |
| 42 | + |
| 43 | +## [v0.1.4] - 2021-05-05 |
| 44 | + |
| 45 | +### Added |
| 46 | + |
| 47 | +- Support highlighting and formatting method signatures [#9] |
| 48 | + |
| 49 | +### Fixed |
| 50 | + |
| 51 | +- Fixed `Slot` error on `eval` of some ASTs [#8] |
| 52 | + |
| 53 | +## [v0.1.3] - 2021-04-29 |
| 54 | + |
| 55 | +### Fixed |
| 56 | + |
| 57 | +- Fixed Windows stdlib path handling [#7] |
| 58 | + |
| 59 | +## [v0.1.2] - 2021-04-25 |
| 60 | + |
| 61 | +### Fixed |
| 62 | + |
| 63 | +- Fixed terminal menu deprecation [#3] |
| 64 | + |
| 65 | +## [v0.1.1] - 2021-04-11 |
| 66 | + |
| 67 | +### Added |
| 68 | + |
| 69 | +- `Cthulu.jl` integration |
| 70 | +- `JET.jl` integration |
| 71 | + |
| 72 | +## [v0.1.0] - 2021-04-06 |
| 73 | + |
| 74 | +Initial release. |
| 75 | + |
| 76 | + |
| 77 | +<!-- Links generated by Changelog.jl --> |
| 78 | + |
| 79 | +[v0.1.0]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.0 |
| 80 | +[v0.1.1]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.1 |
| 81 | +[v0.1.2]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.2 |
| 82 | +[v0.1.3]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.3 |
| 83 | +[v0.1.4]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.4 |
| 84 | +[v0.1.5]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.5 |
| 85 | +[v0.1.6]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.6 |
| 86 | +[v1.0.0]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v1.0.0 |
| 87 | +[v1.0.1]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v1.0.1 |
| 88 | +[#3]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/3 |
| 89 | +[#7]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/7 |
| 90 | +[#8]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/8 |
| 91 | +[#9]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/9 |
| 92 | +[#12]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/12 |
| 93 | +[#14]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/14 |
| 94 | +[#21]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/21 |
| 95 | +[#22]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/22 |
| 96 | +[#24]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/24 |
| 97 | +[#25]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/25 |
| 98 | +[#28]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/28 |
0 commit comments