Skip to content

Commit

Permalink
Set version to 2.20.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Oct 17, 2024
1 parent c4ac614 commit 5c15d88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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
## [v2.20.1] - 2024-10-17
### Fixed
- Errors from code evaluation (with `continue_on_error = true`) are now properly displayed
with `showerror`. ([#261])
Expand Down Expand Up @@ -312,6 +312,7 @@ https://discourse.julialang.org/t/ann-literate-jl/10651 for release announcement
[v2.19.0]: https://github.com/fredrikekre/Literate.jl/releases/tag/v2.19.0
[v2.19.1]: https://github.com/fredrikekre/Literate.jl/releases/tag/v2.19.1
[v2.20.0]: https://github.com/fredrikekre/Literate.jl/releases/tag/v2.20.0
[v2.20.1]: https://github.com/fredrikekre/Literate.jl/releases/tag/v2.20.1
[#116]: https://github.com/fredrikekre/Literate.jl/issues/116
[#144]: https://github.com/fredrikekre/Literate.jl/issues/144
[#145]: https://github.com/fredrikekre/Literate.jl/issues/145
Expand Down Expand Up @@ -363,6 +364,7 @@ https://discourse.julialang.org/t/ann-literate-jl/10651 for release announcement
[#252]: https://github.com/fredrikekre/Literate.jl/issues/252
[#257]: https://github.com/fredrikekre/Literate.jl/issues/257
[#259]: https://github.com/fredrikekre/Literate.jl/issues/259
[#261]: https://github.com/fredrikekre/Literate.jl/issues/261
[0872a96]: https://github.com/fredrikekre/Literate.jl/commit/0872a96
[0f9e836]: https://github.com/fredrikekre/Literate.jl/commit/0f9e836
[1d02868]: https://github.com/fredrikekre/Literate.jl/commit/1d02868
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Literate"
uuid = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
version = "2.20.0"
version = "2.20.1"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
4 changes: 2 additions & 2 deletions docs/Manifest.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is machine-generated - editing it directly is not advised

julia_version = "1.11.0"
julia_version = "1.11.1"
manifest_format = "2.0"
project_hash = "2e078e25d2cbff6828e6677f0730b09dacc40677"

Expand Down Expand Up @@ -459,7 +459,7 @@ version = "1.11.0"
deps = ["Base64", "IOCapture", "JSON", "REPL"]
path = ".."
uuid = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
version = "2.20.0"
version = "2.20.1"

[[deps.LogExpFunctions]]
deps = ["DocStringExtensions", "IrrationalConstants", "LinearAlgebra"]
Expand Down

2 comments on commit 5c15d88

@fredrikekre
Copy link
Owner Author

Choose a reason for hiding this comment

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

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 v2.20.1 -m "<description of version>" 5c15d8865322a2b4225efa3a6bdf6f95439dcf70
git push origin v2.20.1

Please sign in to comment.