From 4a255878e125ee11d16da45c81a977331db35f1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Fri, 3 Sep 2021 09:25:17 +0200 Subject: [PATCH] Bump to 5.1.2 (#154) * Bump to 5.1.2 * Bump to 3.0.2 * Bump to 3.0.2 * Bump to 3.0.2 * Bump to 3.0.2 * Add keyword and classifiers * Update README.md --- README.md | 15 +++++++++++++++ lerna.json | 2 +- mamba_gator/_version.py | 2 +- packages/common/package.json | 2 +- packages/labextension/package.json | 4 ++-- packages/navigator/package.json | 2 +- setup.py | 15 +++++++++++++++ 7 files changed, 36 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8a73f5ed..265e5a53 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,21 @@ sense to move the project in the `mamba-org` organization. ## Changelog +### 5.1.2 + +- Security updates: + - Bump handlebars from 4.7.6 to 4.7.7 (#143) + - Bump hosted-git-info from 2.8.8 to 2.8.9 (#144) + - Bump lodash from 4.17.20 to 4.17.21 (#145) + - Bump browserslist from 4.16.1 to 4.16.6 (#146) + - Bump ws from 7.4.2 to 7.4.6 (#148) + - Bump postcss from 7.0.35 to 7.0.36 (#149) + - Bump tar from 4.4.13 to 4.4.15 (#151) + - Bump path-parse from 1.0.6 to 1.0.7 (#152) + - Bump tar from 4.4.15 to 4.4.19 (#153) +- Maintenance: + - Add keywords and PyPI classifiers + ### 5.1.1 - Bug fix diff --git a/lerna.json b/lerna.json index 03259509..c5f14c26 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "npmClient": "yarn", - "version": "3.0.0", + "version": "3.0.2", "useWorkspaces": true } diff --git a/mamba_gator/_version.py b/mamba_gator/_version.py index ee15baa8..d211f7d1 100644 --- a/mamba_gator/_version.py +++ b/mamba_gator/_version.py @@ -1,2 +1,2 @@ -version_info = (5, 1, 1) +version_info = (5, 1, 2) __version__ = ".".join(map(str, version_info)) + "" diff --git a/packages/common/package.json b/packages/common/package.json index 131588df..6f547a4e 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@mamba-org/gator-common", - "version": "3.0.1", + "version": "3.0.2", "description": "Base components and models to manage conda/mamba environments within Jupyter", "keywords": [ "conda", diff --git a/packages/labextension/package.json b/packages/labextension/package.json index 48fc47b7..b228428b 100644 --- a/packages/labextension/package.json +++ b/packages/labextension/package.json @@ -1,6 +1,6 @@ { "name": "@mamba-org/gator-lab", - "version": "3.0.1", + "version": "3.0.2", "description": "Manage your conda environments from JupyterLab", "keywords": [ "jupyter", @@ -91,4 +91,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/packages/navigator/package.json b/packages/navigator/package.json index abd2c27b..8beb8d71 100644 --- a/packages/navigator/package.json +++ b/packages/navigator/package.json @@ -1,6 +1,6 @@ { "name": "@mamba-org/navigator", - "version": "3.0.1", + "version": "3.0.2", "private": true, "files": [ "lib/**/*.{d.ts,js.map,js}", diff --git a/setup.py b/setup.py index 75c118e8..3a520610 100644 --- a/setup.py +++ b/setup.py @@ -96,4 +96,19 @@ ] }, entry_points={"console_scripts": ["gator = mamba_gator.navigator.main:main"]}, + keywords=["Jupyter", "JupyterLab", "JupyterLab3", "conda", "mamba"], + classifiers=[ + "License :: OSI Approved :: BSD License", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Framework :: Jupyter", + "Framework :: Jupyter :: JupyterLab", + "Framework :: Jupyter :: JupyterLab :: 3", + "Framework :: Jupyter :: JupyterLab :: Extensions", + "Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt", + ], )