diff --git a/README.md b/README.md index ff8da7e2..d25adbac 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ The following backends are available: tensorflow logo -### Development status (main) +### Development status (0.3.5) | | Numpy | PyTorch | Jittor | PaddlePaddle | Tensorflow | MindSpore | | ------------------- | ----- | ------- | ------ | ------------ | ---------- | --------- | @@ -128,7 +128,7 @@ The following backends are available: | Classic Solvers | ✔ | ✔ | ✔ | ✔ | ✔ | 🧱 | | Multi-Graph Solvers | ✔ | ✔ | ✔ | ✔ | 📆 | 📆 | | Neural Solvers | ✔ | ✔ | ✔ | 🧱 | 📆 | 📆 | -| Examples Gallery | 🧱 | ✔ | ✔ | 🧱 | 📆 | 📆 | +| Examples Gallery | ✔ | ✔ | ✔ | 🧱 | 📆 | 📆 | ✔: Supported; 🧱: Work in progress; 📆: Planned for future versions (contributions welcomed!). diff --git a/pygmtools/__init__.py b/pygmtools/__init__.py index 2ea263f4..150a3cc6 100644 --- a/pygmtools/__init__.py +++ b/pygmtools/__init__.py @@ -15,7 +15,7 @@ from .neural_solvers import pca_gm, ipca_gm, cie, ngm import pygmtools.utils as utils BACKEND = 'numpy' -__version__ = '0.3.4' +__version__ = '0.3.5' __author__ = 'ThinkLab at SJTU'