Skip to content

Commit

Permalink
Update to version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oltarasenko committed Feb 19, 2020
1 parent 02515a2 commit 769cb88
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions README.md
Expand Up @@ -23,7 +23,7 @@ historical archival.
# mix.exs
defp deps do
[
{:crawly, "~> 0.7.0"}
{:crawly, "~> 0.8.0"}
]
end
```
Expand Down Expand Up @@ -67,7 +67,6 @@ historical archival.
config :crawly,
closespider_timeout: 10,
concurrent_requests_per_domain: 8,
follow_redirect: true,
closespider_itemcount: 1000,
middlewares: [
Crawly.Middlewares.DomainFilter,
Expand Down Expand Up @@ -103,8 +102,8 @@ You can read more here:

## Roadmap

1. [ ] Pluggable HTTP client
2. [ ] Retries support
1. [x] Pluggable HTTP client
2. [x] Retries support
3. [ ] Cookies support
4. [ ] XPath support
5. [ ] Project generators (spiders)
Expand Down
2 changes: 1 addition & 1 deletion documentation/introduction.md
Expand Up @@ -11,7 +11,7 @@ Crawly requires Elixir v1.7 or higher.
1. Add Crawly to you mix.exs file
```elixir
def deps do
[{:crawly, "~> 0.7.0"}]
[{:crawly, "~> 0.8.0"}]
end
```
2. Update your dependencies with `mix deps.get`
Expand Down
2 changes: 1 addition & 1 deletion documentation/quickstart.md
Expand Up @@ -12,7 +12,7 @@ Goals:
# mix.exs
defp deps do
[
{:crawly, "~> 0.7.0"}
{:crawly, "~> 0.8.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion documentation/tutorial.md
Expand Up @@ -54,7 +54,7 @@ file with the following code:

```elixir
def deps do
[{:crawly, "~> 0.7.0"}]
[{:crawly, "~> 0.8.0"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
@@ -1,7 +1,7 @@
defmodule Crawly.Mixfile do
use Mix.Project

@version "0.8.0-dev"
@version "0.8.0"

def project do
[
Expand Down

0 comments on commit 769cb88

Please sign in to comment.