Skip to content

Commit

Permalink
Set version to 1.10.1. (#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre authored Nov 28, 2023
1 parent 57d57a5 commit a2ce750
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ 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]
<!-- ## [Unreleased] -->

## [v1.10.1] - 2023-11-28
### Changed
- Server errors are no longer serialized back to the client since this might leak sensitive
information through the error message. ([#1126])
Expand Down Expand Up @@ -460,7 +462,7 @@ See changes for 0.9.15: this release is equivalent to 0.9.15 with [#752] reverte
`HTTP.request` and friends ([#619]).


[Unreleased]: https://github.com/JuliaWeb/HTTP.jl/compare/v1.10.0...HEAD
[Unreleased]: https://github.com/JuliaWeb/HTTP.jl/compare/v1.10.1...HEAD


<!-- Links generated by Changelog.jl -->
Expand Down Expand Up @@ -532,6 +534,7 @@ See changes for 0.9.15: this release is equivalent to 0.9.15 with [#752] reverte
[v1.9.15]: https://github.com/JuliaWeb/HTTP.jl/releases/tag/v1.9.15
[v1.9.16]: https://github.com/JuliaWeb/HTTP.jl/releases/tag/v1.9.16
[v1.10.0]: https://github.com/JuliaWeb/HTTP.jl/releases/tag/v1.10.0
[v1.10.1]: https://github.com/JuliaWeb/HTTP.jl/releases/tag/v1.10.1
[#543]: https://github.com/JuliaWeb/HTTP.jl/issues/543
[#546]: https://github.com/JuliaWeb/HTTP.jl/issues/546
[#547]: https://github.com/JuliaWeb/HTTP.jl/issues/547
Expand Down Expand Up @@ -689,3 +692,4 @@ See changes for 0.9.15: this release is equivalent to 0.9.15 with [#752] reverte
[#1117]: https://github.com/JuliaWeb/HTTP.jl/issues/1117
[#1119]: https://github.com/JuliaWeb/HTTP.jl/issues/1119
[#1126]: https://github.com/JuliaWeb/HTTP.jl/issues/1126
[#1127]: https://github.com/JuliaWeb/HTTP.jl/issues/1127
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HTTP"
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
authors = ["Jacob Quinn", "contributors: https://github.com/JuliaWeb/HTTP.jl/graphs/contributors"]
version = "1.10.0"
version = "1.10.1"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down

2 comments on commit a2ce750

@fredrikekre
Copy link
Member 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/96059

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 v1.10.1 -m "<description of version>" a2ce750aa28765d0bb6f905c41f11919173a3457
git push origin v1.10.1

Please sign in to comment.