Release mgp 1.1.0 (#620)

- Updated its README, authors, and published it with the added
   AuthorizationError that was a part of Memgraph 2.4.0 release.
 - Added missing SOURCE_TYPE_KAFKA and SOURCE_TYPE_PULSAR variables in _mgp.
This commit is contained in:
Katarina Supe 2022-11-02 14:14:12 +01:00 committed by GitHub
parent 3daab6ce97
commit 2a2b99b02a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 5 deletions

View File

@ -1,4 +1,11 @@
# mgp # mgp
PyPi package used for type hinting when creating MAGE modules. The get started PyPi package used for type hinting when creating query modules. Repository of already available query modules is called [MAGE](https://github.com/memgraph/mage).
using MAGE repository checkout the repository here: https://github.com/memgraph/mage.
## 🎬 Get started
To learn more, head over to the [docs for the query modules Python API](https://memgraph.com/docs/memgraph/reference-guide/query-modules/api/python-api). To get started with query modules, check out the [how-to guide](https://memgraph.com/docs/memgraph/how-to-guides/query-modules) on Memgraph docs.
## 🔢 Versioning
- mgp v1.1 is compatible with Memgraph >= 2.4.0

View File

@ -257,3 +257,11 @@ class _MODULE:
@staticmethod @staticmethod
def add_function(wrapper): def add_function(wrapper):
pass pass
class SOURCE_TYPE_KAFKA:
pass
class SOURCE_TYPE_PULSAR:
pass

View File

@ -1,13 +1,13 @@
[tool.poetry] [tool.poetry]
name = "mgp" name = "mgp"
version = "1.0.0" version = "1.1.0"
description = "Memgraph's module for developing MAGE modules. Used only for type hinting!" description = "Memgraph's module for developing MAGE modules. Used only for type hinting!"
authors = [ authors = [
"MasterMedo <mislav.vuletic@gmail.com>",
"jbajic <jure.bajic@memgraph.io>",
"katarinasupe <katarina.supe@memgraph.io>", "katarinasupe <katarina.supe@memgraph.io>",
"jbajic <jure.bajic@memgraph.io>",
"antejavor <ante.javor@memgraph.io>", "antejavor <ante.javor@memgraph.io>",
"antaljanosbenjamin <benjamin.antal@memgraph.io>", "antaljanosbenjamin <benjamin.antal@memgraph.io>",
"MasterMedo <mislav.vuletic@gmail.com>",
] ]
license = "Apache-2.0" license = "Apache-2.0"
readme = "README.md" readme = "README.md"