Skip to content

Commit 65c7c78

Browse files
authored
Merge pull request #197 from visualpython/release
Release v2.3.2
2 parents d2bff3a + 6d42a79 commit 65c7c78

29 files changed

+11535
-11195
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
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
18+
grep -REil "\"version\": \"${VP_ORG_VER}\"" package.json | xargs sed -i "s/\"version\": \"${VP_ORG_VER//\./\\.}\"/\"version\": \"${VP_NEW_VER}\"/g"
1819
grep -REil "version = \"${VP_ORG_VER}\"" pyproject.toml | xargs sed -i "s/version = \"${VP_ORG_VER//\./\\.}\"/version = \"${VP_NEW_VER}\"/g"
1920
grep -REil "current = \"${VP_ORG_VER}\"" pyproject.toml | xargs sed -i "s/current = \"${VP_ORG_VER//\./\\.}\"/current = \"${VP_NEW_VER}\"/g"
2021
grep -REil ${VP_ORG_VER//\./\\.} ../visualpython/* | xargs sed -i "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"

jupyterlab/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.2.12",
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]

0 commit comments

Comments
 (0)