Skip to content

Commit a0183ae

Browse files
committed
v0.11.0 (#125)
* Update README.md * Version bump to v.0.11.1
1 parent 2137d7e commit a0183ae

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["examples/filter_example", "."]
33

44
[package]
55
name = "vinted-rs"
6-
version = "0.10.0"
6+
version = "0.11.0"
77
edition = "2024"
88
repository = "https://github.com/TuTarea/vinted-rs"
99
authors = [

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Via `cargo` you can add the library to your project's `Cargo.toml`
1616

1717
```toml
1818
[dependencies]
19-
vinted-rs = { version = "0.10.0",
19+
vinted-rs = { version = "0.11.0",
2020
#features = ["advanced_filters", "redis"]
2121
}
2222
```
@@ -30,7 +30,8 @@ vinted-rs = { version = "0.10.0",
3030

3131
### Advanced filters
3232

33-
> This feature requires [setting up a Postgres Database](#database-set-up) <code><img width="3%" src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/postgresql.svg"></code>
33+
> [!NOTE]
34+
> This feature requires [setting up a Postgres Database](#database-set-up) <code><img width="3%" src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/postgresql.svg"></code>
3435
3536
Uses the data pulled by the [scrapping module](./scrapping/vinted-db-feeder/), which is stored in the diesel [migrations](./migrations/) folder.
3637

@@ -47,7 +48,8 @@ Uses the data pulled by the [scrapping module](./scrapping/vinted-db-feeder/), w
4748
#### Database set-up
4849
Advanced filtering features must require this setup before running.
4950

50-
1. ⚠️ `diesel-cli` installation may fail if you do not have `libpq` library installed. To install `libpq`, just install PostgreSQL package on your machine.
51+
> [!IMPORTANT]
52+
`diesel-cli` installation may fail if you do not have `libpq` library installed. To install `libpq`, just install PostgreSQL package on your machine.
5153

5254
- In `Arch` based is only necessary to install this package.
5355

@@ -100,18 +102,18 @@ Advanced filtering features must require this setup before running.
100102

101103
#### Testing set-up
102104

105+
> [!NOTE]
103106
> This step requires completing the [DB setup](#database-set-up)
104107

105108
```bash
106109
cargo test
107110
```
108111

109112
### Redis
110-
111113
This feature allows recovered results to be cached using a Redis instance. <code><img width="4%" src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/redis.svg"></code>
112114

113115
A development instance can be created using:
114116

115117
```bash
116118
make cache
117-
```
119+
```

examples/filter_example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "filter_example"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)