We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1808d commit 40825ceCopy full SHA for 40825ce
CHANGELOG.md
@@ -1,5 +1,17 @@
1
# Changelog
2
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
15
## v1.0.58 (2022-01-12)
16
17
EntityTypeReference for Edge reference files - won't keep the entire mapping in memory anymore.
setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-VERSION = '1.0.59'
+VERSION = '1.0.60'
with open('README.rst') as readme_file:
readme = readme_file.read()
0 commit comments