Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add changelog #38

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .ci/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[deps]
Changelog = "5217a498-cd5d-4ec6-b8c2-9b85a09b6e3e"

[compat]
Changelog = "1"
julia = "1"
9 changes: 9 additions & 0 deletions .ci/changelog.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Changelog

cd(dirname(@__DIR__)) do
Changelog.generate(
Changelog.CommonMark(),
"CHANGELOG.md";
repo="MichaelHatherly/InteractiveErrors.jl",
)
end
98 changes: 98 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# InteractiveErrors.jl changelog

All notable changes to this project will be documented in this file.

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).

## Unreleased

## [v1.0.1] - 2024-01-04

### Fixed

- Do not add AST transformer when precompiling [#28]

## [v1.0.0] - 2023-10-06

### Added

- Switched to using package extensions [#22]
- Added `PrecompileTools` workloads [#24]

### Fixed

- Fixes for `OhMyREPL` interface changes [#21]

### Changed

- Removed `Requires` from direct deps [#25]

## [v0.1.6] - 2023-09-21

### Fixed

- Update compat bound for `AbstractTrees` [#14]

## [v0.1.5] - 2022-01-26

### Fixed

- Removed vendored `FoldingTrees` [#12]

## [v0.1.4] - 2021-05-05

### Added

- Support highlighting and formatting method signatures [#9]

### Fixed

- Fixed `Slot` error on `eval` of some ASTs [#8]

## [v0.1.3] - 2021-04-29

### Fixed

- Fixed Windows stdlib path handling [#7]

## [v0.1.2] - 2021-04-25

### Fixed

- Fixed terminal menu deprecation [#3]

## [v0.1.1] - 2021-04-11

### Added

- `Cthulu.jl` integration
- `JET.jl` integration

## [v0.1.0] - 2021-04-06

Initial release.


<!-- Links generated by Changelog.jl -->

[v0.1.0]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.0
[v0.1.1]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.1
[v0.1.2]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.2
[v0.1.3]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.3
[v0.1.4]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.4
[v0.1.5]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.5
[v0.1.6]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v0.1.6
[v1.0.0]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v1.0.0
[v1.0.1]: https://github.com/MichaelHatherly/InteractiveErrors.jl/releases/tag/v1.0.1
[#3]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/3
[#7]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/7
[#8]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/8
[#9]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/9
[#12]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/12
[#14]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/14
[#21]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/21
[#22]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/22
[#24]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/24
[#25]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/25
[#28]: https://github.com/MichaelHatherly/InteractiveErrors.jl/issues/28
Loading