Skip to content

Commit 05873d8

Browse files
committed
Bump version
1 parent 7b618a1 commit 05873d8

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
## UNRELEASED
44

5+
## v1.1.4 (2024-02-01)
6+
7+
### Fixed
8+
9+
Fixed issue creating an Edge dataset without product attribute specified, but specifying the product in the `RPApi` object:
10+
11+
```python
12+
from ravenpackapi import RPApi, Dataset
13+
14+
api = RPApi(api_key="YOUR_API_KEY", product="edge")
15+
16+
ds = api.create_dataset(
17+
Dataset(
18+
name="New Dataset",
19+
filters={"entity_relevance": {"$gte": 90}},
20+
)
21+
)
22+
```
23+
24+
Since the product is not specified in `Dataset`'s `__init__`, the incorrect
25+
product was being passed to the API, resulting in the message.
26+
27+
> Field 'product' must be 'edge'
28+
529
## v1.1.3 (2023-12-06)
630

731
### Fixed

ravenpackapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.3"
1+
__version__ = "1.1.4"

0 commit comments

Comments
 (0)