Skip to content

Commit

Permalink
Publish v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madeindjs committed Feb 21, 2022
1 parent a6bff02 commit d24da4b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## Unreleased
## v1.4.0

- feat(cli): add cli ability ([#16](https://github.com/madeindjs/spider/pull/16) thanks to [@j-mendez](https://github.com/j-mendez))
- feat(concurrency): dynamic concurrent cpu defaults ([#15](https://github.com/madeindjs/spider/pull/15) thanks to [@j-mendez](https://github.com/j-mendez))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider"
version = "1.3.2"
version = "1.4.0"
authors = ["madeindjs <[email protected]>"]
description = "Multithreaded Web spider crawler written in Rust."
repository = "https://github.com/madeindjs/spider"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add this dependency to your _Cargo.toml_ file.

```toml
[dependencies]
spider = "1.3.2"
spider = "1.4.0"
```

Then you'll be able to use library. Here is a simple example:
Expand Down
2 changes: 1 addition & 1 deletion src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct Configuration {
impl Configuration {
pub fn new() -> Self {
Self {
user_agent: "spider/1.3.2",
user_agent: "spider/1.4.0",
delay: 250,
concurrency: num_cpus::get() * 4,
..Default::default()
Expand Down

0 comments on commit d24da4b

Please sign in to comment.