Skip to content

Commit 0df73e9

Browse files
committed
deploy visualpython 2.3.2
1 parent b3fcc9e commit 0df73e9

File tree

12 files changed

+22
-20
lines changed

12 files changed

+22
-20
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Set version and replace it
1313
#=============================================================================
14-
VP_ORG_VER=2.3.0
15-
VP_NEW_VER=2.3.1
14+
VP_ORG_VER=2.3.1
15+
VP_NEW_VER=2.3.2
1616

1717
# update version info
1818
grep -REil "VP_ORG_VER=.+$" colab/build.colab.sh jupyterlab/build.jupyterlab.sh jupyternotebook/build.jupyternotebook.sh | xargs sed -i "s/VP_ORG_VER=.\+$/VP_ORG_VER=${VP_ORG_VER}/g"

colab/build.colab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version
1313
#=============================================================================
14-
VP_ORG_VER=2.3.0
15-
VP_NEW_VER=2.3.1
14+
VP_ORG_VER=2.3.1
15+
VP_NEW_VER=2.3.2
1616
VP_COLAB_VER=1 # colab specified versioning
1717

1818
# update version info

colab/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Visual Python for Colab",
33
"description": "GUI-based Python code generator for Google Colab as an extension",
4-
"version": "2.3.1.1",
4+
"version": "2.3.2.1",
55
"manifest_version": 3,
66
"icons": {
77
"48": "icon.png",

jupyterlab/build.jupyterlab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version and Basic Files
1313
#=============================================================================
14-
VP_ORG_VER=2.3.0
15-
VP_NEW_VER=2.3.1
14+
VP_ORG_VER=2.3.1
15+
VP_NEW_VER=2.3.2
1616

1717
# update version info
1818
grep -REil "\"version\": \"${VP_ORG_VER}\"" package.json | xargs sed -i "s/\"version\": \"${VP_ORG_VER//\./\\.}\"/\"version\": \"${VP_NEW_VER}\"/g"

jupyterlab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-visualpython",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "GUI-based Python code generator for Jupyter Lab as an extension",
55
"keywords": [
66
"jupyter",

jupyterlab/pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ classifiers = [
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
3434
]
35-
version = "2.3.1"
35+
version = "2.3.2"
3636

3737
[project.license]
3838
file = "LICENSE"
3939

4040
[project.urls]
41-
Homepage = "https://github.com/visualpython/visualpython"
41+
Homepage = "https://visualpython.ai"
42+
documentation = "https://visual-python.gitbook.io/docs/getting-started/welcome-to-visual-python"
43+
repository = "https://github.com/visualpython/visualpython"
4244

4345
[tool.hatch.build]
4446
directory = "../dist/jupyterlab"
@@ -90,7 +92,7 @@ file = [
9092
]
9193

9294
[tool.tbump.version]
93-
current = "2.3.1"
95+
current = "2.3.2"
9496
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9597

9698
[tool.tbump.git]

jupyternotebook/build.jupyternotebook.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version and Basic Files
1313
#=============================================================================
14-
VP_ORG_VER=2.3.0
15-
VP_NEW_VER=2.3.1
14+
VP_ORG_VER=2.3.1
15+
VP_NEW_VER=2.3.2
1616

1717
# update version info
1818
grep -REil ${VP_ORG_VER//\./\\.} setup.py visualpython/* | xargs sed -i --follow-symlinks "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"

jupyternotebook/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name = name,
13-
version = '2.3.1',
13+
version = '2.3.2',
1414
packages = find_packages(),
1515
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
1616
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],

visualpython/css/component/multiSelector.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
}
7676
.vp-cs-add-item-btn {
7777
display: inline-block;
78-
position: absolute;
79-
right: 35px;
80-
bottom: 63px;
78+
position: relative;
79+
left: calc(100% - 25px);
80+
bottom: 23px;
8181
cursor: pointer;
8282
}

visualpython/js/com/com_Config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ define([
923923
/**
924924
* Version
925925
*/
926-
Config.version = "2.3.1";
926+
Config.version = "2.3.2";
927927

928928
/**
929929
* Type of mode

visualpython/js/com/com_Const.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define ([
1919
class Constants { }
2020

2121
Constants.TOOLBAR_BTN_INFO = {
22-
HELP: "Visual Python 2.3.1"
22+
HELP: "Visual Python 2.3.2"
2323
, ICON: "vp-main-icon"
2424
, ID: "vpBtnToggle"
2525
, NAME: "toggle-vp"

visualpython/js/m_apps/Subset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ define([
146146

147147
let that = this;
148148
let allocateSelector = new DataSelector({
149-
pageThis: this, id: 'allocateTo', classes: VP_DS_ALLOCATE_TO, placeholder: 'New variable name', required: true,
149+
pageThis: this, id: 'allocateTo', classes: VP_DS_ALLOCATE_TO, placeholder: 'New variable name',
150150
finish: function() {
151151
that.generateCode();
152152
}

0 commit comments

Comments
 (0)