Skip to content

Commit

Permalink
Set version to 0.9.11. (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Jun 30, 2021
1 parent 2049674 commit 0bb9148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ 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]

## [0.9.11] - 2021-06-30
### Changed
- "Connection closed by peer" errors are now emitted as `Debug`-level messages (instead of `Error`-level) ([#727]).
### Fixed
- Fix websocket disconnection errors ([#723]).
- Reduced allocations for some internals functions used for e.g. header comparison ([#725]).

## [0.9.10] - 2021-05-30
### Fixed
Expand Down Expand Up @@ -103,7 +108,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
`HTTP.request` and friends ([#619]).


[Unreleased]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.10...HEAD
[Unreleased]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.11...HEAD
[0.9.11]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.10...v0.9.11
[0.9.10]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.9...v0.9.10
[0.9.9]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.8...v0.9.9
[0.9.8]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.7...v0.9.8
Expand Down Expand Up @@ -150,4 +156,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#714]: https://github.com/JuliaWeb/HTTP.jl/pull/713
[#717]: https://github.com/JuliaWeb/HTTP.jl/pull/717
[#718]: https://github.com/JuliaWeb/HTTP.jl/pull/718
[#723]: https://github.com/JuliaWeb/HTTP.jl/pull/723
[#725]: https://github.com/JuliaWeb/HTTP.jl/pull/725
[#727]: https://github.com/JuliaWeb/HTTP.jl/pull/727
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", "Sam O'Connor", "contributors: https://github.com/JuliaWeb/HTTP.jl/graphs/contributors"]
version = "0.9.10"
version = "0.9.11"

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

2 comments on commit 0bb9148

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

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 v0.9.11 -m "<description of version>" 0bb91489eb9e897442b74cdc522012db11f174a9
git push origin v0.9.11

Please sign in to comment.