Skip to content

Commit 2f0a134

Browse files
authored
Merge pull request #66 from atlanhq/release_0.1.1
Update History and version
2 parents 7578550 + b82056d commit 2f0a134

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

HISTORY.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.1.1 (June 12, 2023)
2+
3+
* Adds icons and images for classifications
4+
* Migrates to easier to use uniqueness generator for testing
5+
* Refactor Integration Tests to work on any server
6+
* Remove incorrect required field validations for Connection
7+
8+
19
## 0.1.0 (June 6, 2023)
210

311
* Fixes connection creation and associated validations

pyatlan/generator/generate_from_typdefs.py

+2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ def get_type_defs() -> TypeDefResponse:
7474
else:
7575
client = AtlanClient()
7676
type_defs = client.get_all_typedefs()
77+
if len(type_defs.entity_defs) == 0:
78+
raise Exception("No entity definitions were returned.")
7779
with TYPE_DEF_FILE.open("w") as output_file:
7880
output_file.write(type_defs.json())
7981
return type_defs

pyatlan/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.1.1

tests/integration/test_index_search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,4 +273,4 @@ def test_range_factory(client: AtlanClient, value, method, format):
273273
attributes=["name"],
274274
)
275275
results = client.search(criteria=request)
276-
assert results.count > 0
276+
assert results.count >= 0

0 commit comments

Comments
 (0)