Skip to content

Commit

Permalink
Changelog and version bump for 0.9.16.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Sep 29, 2021
1 parent 3276e6f commit edf81a0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.16] - 2021-09-29
See changes for 0.9.15: this release is equivalent to 0.9.15 with [#752] reverted.
[#752] might be included in a future breaking release instead, see [#774].

## [0.9.15] - 2021-09-27
**Note:** This release have been pulled back since [#752] turned out to be breaking.
### Changed
- HTTP.jl no longer calls `close` on streams given with the `response_stream` keyword
argument to `HTTP.request` and friends. If it is required to close the stream
after the request you now have to do it manually, e.g.
- **Reverted in 0.9.16**
HTTP.jl no longer calls `close` on streams given with the `response_stream` keyword
argument to `HTTP.request` and friends. If it is required to close the stream after the
request you now have to do it manually, e.g.
```julia
io = ...
HTTP.request(...; response_stream = io)
Expand Down Expand Up @@ -142,7 +148,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.15...HEAD
[Unreleased]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.16...HEAD
[0.9.16]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.15...v0.9.16
[0.9.15]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.14...v0.9.15
[0.9.14]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.13...v0.9.14
[0.9.13]: https://github.com/JuliaWeb/HTTP.jl/compare/v0.9.12...v0.9.13
Expand Down Expand Up @@ -214,3 +221,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#765]: https://github.com/JuliaWeb/HTTP.jl/pull/765
[#766]: https://github.com/JuliaWeb/HTTP.jl/pull/766
[#770]: https://github.com/JuliaWeb/HTTP.jl/pull/770
[#774]: https://github.com/JuliaWeb/HTTP.jl/pull/774
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.15"
version = "0.9.16"

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

2 comments on commit edf81a0

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

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.16 -m "<description of version>" edf81a03d1cb03a6c205391890edb11e9b7009ff
git push origin v0.9.16

Please sign in to comment.