Skip to content

Commit d4109de

Browse files
bump to v1.1
1 parent ef83518 commit d4109de

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1] - 2022-09-06
9+
10+
Release of pyTigerGraph version 1.1.
11+
12+
## Added:
13+
* TensorFlow support for homogeneous GNNs via the Spektral library.
14+
* Heterogeneous Graph Dataloading support for DGL.
15+
* Support of lists of strings in dataloaders.
16+
17+
## Changed:
18+
* Fixed KeyError when creating a data loader on a graph where PrimaryIdAsAttribute is False.
19+
* Error catch if Kafka dataloader doesn't run in async mode.
20+
* Refresh schema during dataloader instantiation and featurizer attribute addition.
21+
* Reduce connection instantiation time.
22+
* Reinstall query if it is disabled.
23+
* Confirm Kafka topic is created before subscription.
24+
* More efficient use of Kafka resources.
25+
* Allow multiple consumers on the same data.
26+
* Improved deprecation warnings.
27+
28+
## [1.0] - 2022-07-11
29+
30+
Release of pyTigerGraph version 1.0, in conjunction with version 1.0 of the link:https://docs.tigergraph.com/ml-workbench/current/overview/[TigerGraph Machine Learning Workbench].
31+
32+
## Added:
33+
* Kafka authentication support for ML Workbench enterprise users.
34+
* Custom query support for Featurizer, allowing developers to generate their own graph-based features as well as use our link:https://docs.tigergraph.com/graph-ml/current/intro/[built-in Graph Data Science algorithms].
35+
36+
## Changed:
37+
* Additional testing of GDS functionality
38+
* More demos and tutorials for TigerGraph ML Workbench, found link:https://github.com/TigerGraph-DevLabs/mlworkbench-docs[here].
39+
* Various bug fixes.
40+
841
## [0.9] - 2022-05-16
942
We are excited to announce the pyTigerGraph v0.9 release! This release adds many new features for graph machine learning and graph data science, a refactoring of core code, and more robust testing. Additionally, we have officially “graduated” it to an official TigerGraph product. This means brand-new documentation, a new GitHub repository, and future feature enhancements. While becoming an official product, we are committed to keeping pyTigerGraph true to its roots as an open-source project. Check out the contributing page and GitHub issues if you want to help with pyTigerGraph’s development.
1043
## Changed

pyTigerGraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from pyTigerGraph.pyTigerGraph import TigerGraphConnection
22

3-
__version__ = "1.0.2"
3+
__version__ = "1.1"
44

55
__license__ = "Apache 2"

0 commit comments

Comments
 (0)