Skip to content

Commit

Permalink
Bump version to v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
s3cur3 committed Feb 9, 2024
1 parent b2a252d commit 6314692
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.3.0

- Add support for custom timeouts via the `:connect_timeout` and `:recv_timeout`
options to `Whois.lookup/1` ([#15](https://github.com/utkarshkukreti/whois.ex/pull/15))
- Correctly fall back to the last best record for domains whose registrar
includes a bogus terminating WHOIS server (like `pairdomains.com`) ([#15](https://github.com/utkarshkukreti/whois.ex/pull/15))
- Add support for `.pl` domains ([#16](https://github.com/utkarshkukreti/whois.ex/pull/16))


## v0.2.1

Super embarrassing compilation fix. 👀
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Add whois to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:whois, "~> 0.2"},
{:whois, "~> 0.3"},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Whois.Mixfile do
def project do
[
app: :whois,
version: "0.2.1",
version: "0.3.0",
elixir: "~> 1.12",
consolidate_protocols: Mix.env() != :test,
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down

0 comments on commit 6314692

Please sign in to comment.