Skip to content

Commit 85bd743

Browse files
committed
Release v0.5.0
1 parent 16991cd commit 85bd743

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## v0.5.0-dev
3+
## v0.4.0 (2024-05-28)
44

55
Req v0.5.0 brings testing enhancements, errors standardization, `%Req.Response.Async{}`, and more improvements and bug fixes.
66

@@ -52,8 +52,7 @@ Req.Test.expect(MyApp.S3, fn conn when conn.method == "GET" ->
5252
end)
5353
```
5454

55-
The important part is the request expectations are meant to (and fail if they aren't) be running
56-
in order.
55+
The important part is the request expectations are meant to run in order (and fail if they don't).
5756

5857
In this release we're also adding [`Req.Test.transport_error/2`], a way to simulate network
5958
errors.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The easiest way to use Req is with [`Mix.install/2`] (requires Elixir v1.12+):
7272

7373
```elixir
7474
Mix.install([
75-
{:req, "~> 0.4.0"}
75+
{:req, "~> 0.5.0"}
7676
])
7777

7878
Req.get!("https://api.github.com/repos/wojtekmach/req").body["description"]
@@ -157,7 +157,7 @@ And here is how they can be used:
157157

158158
```elixir
159159
Mix.install([
160-
{:req, "~> 0.4.0"},
160+
{:req, "~> 0.5.0"},
161161
{:req_easyhtml, "~> 0.1.0"},
162162
{:req_s3, "~> 0.1.0"},
163163
{:req_hex, "~> 0.1.0"},

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Req.MixProject do
22
use Mix.Project
33

4-
@version "0.5.0-dev"
4+
@version "0.5.0"
55
@source_url "https://github.com/wojtekmach/req"
66

77
def project do

0 commit comments

Comments
 (0)