Skip to content

Commit 4a25587

Browse files
authored
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
1 parent 833e0b6 commit 4a25587

File tree

7 files changed

+36
-6
lines changed

7 files changed

+36
-6
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,21 @@ sense to move the project in the `mamba-org` organization.
113113

114114
## Changelog
115115

116+
### 5.1.2
117+
118+
- Security updates:
119+
- Bump handlebars from 4.7.6 to 4.7.7 (#143)
120+
- Bump hosted-git-info from 2.8.8 to 2.8.9 (#144)
121+
- Bump lodash from 4.17.20 to 4.17.21 (#145)
122+
- Bump browserslist from 4.16.1 to 4.16.6 (#146)
123+
- Bump ws from 7.4.2 to 7.4.6 (#148)
124+
- Bump postcss from 7.0.35 to 7.0.36 (#149)
125+
- Bump tar from 4.4.13 to 4.4.15 (#151)
126+
- Bump path-parse from 1.0.6 to 1.0.7 (#152)
127+
- Bump tar from 4.4.15 to 4.4.19 (#153)
128+
- Maintenance:
129+
- Add keywords and PyPI classifiers
130+
116131
### 5.1.1
117132

118133
- Bug fix

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"npmClient": "yarn",
3-
"version": "3.0.0",
3+
"version": "3.0.2",
44
"useWorkspaces": true
55
}

mamba_gator/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (5, 1, 1)
1+
version_info = (5, 1, 2)
22
__version__ = ".".join(map(str, version_info)) + ""

packages/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mamba-org/gator-common",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Base components and models to manage conda/mamba environments within Jupyter",
55
"keywords": [
66
"conda",

packages/labextension/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mamba-org/gator-lab",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Manage your conda environments from JupyterLab",
55
"keywords": [
66
"jupyter",
@@ -91,4 +91,4 @@
9191
"publishConfig": {
9292
"access": "public"
9393
}
94-
}
94+
}

packages/navigator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mamba-org/navigator",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"private": true,
55
"files": [
66
"lib/**/*.{d.ts,js.map,js}",

setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,19 @@
9696
]
9797
},
9898
entry_points={"console_scripts": ["gator = mamba_gator.navigator.main:main"]},
99+
keywords=["Jupyter", "JupyterLab", "JupyterLab3", "conda", "mamba"],
100+
classifiers=[
101+
"License :: OSI Approved :: BSD License",
102+
"Programming Language :: Python",
103+
"Programming Language :: Python :: 3",
104+
"Programming Language :: Python :: 3.6",
105+
"Programming Language :: Python :: 3.7",
106+
"Programming Language :: Python :: 3.8",
107+
"Programming Language :: Python :: 3.9",
108+
"Framework :: Jupyter",
109+
"Framework :: Jupyter :: JupyterLab",
110+
"Framework :: Jupyter :: JupyterLab :: 3",
111+
"Framework :: Jupyter :: JupyterLab :: Extensions",
112+
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
113+
],
99114
)

0 commit comments

Comments
 (0)