Skip to content

Commit 40825ce

Browse files
committed
Bump version
1 parent cc1808d commit 40825ce

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v1.0.60 (2023-09-13)
4+
5+
New flag to store the entity mapping data in memory, when using `edge`. Use
6+
with caution.
7+
8+
```python
9+
eref = api.get_entity_type_reference(entity_type, "full", file_date)
10+
eref.store_in_memory = True
11+
for entity in eref:
12+
print(entity)
13+
```
14+
315
## v1.0.58 (2022-01-12)
416

517
EntityTypeReference for Edge reference files - won't keep the entire mapping in memory anymore.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '1.0.59'
3+
VERSION = '1.0.60'
44

55
with open('README.rst') as readme_file:
66
readme = readme_file.read()

0 commit comments

Comments
 (0)