Skip to content

Commit 30bb6ec

Browse files
committed
Push version to v0.22.0 (with release.sh)
1 parent 129af7f commit 30bb6ec

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

Diff for: CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v0.22.0 (2022-10-21)
4+
5+
The GUI plugin is now updated to support JupyterLab 3.x and, therefore, supports the current versions of SageMaker Notebook Instances and SageMaker Studio notebooks.
6+
7+
As of this release, the JupyterLab extension is *no longer compatible with JupyterLab 2.x*. If you're using JupyterLab 2.x, please use [release v0.21.0](#v0210-2022-10-04).
8+
9+
Additional small features:
10+
11+
* Add a real life cycle script for SageMaker Studio notebooks so you can install the plugin permanently in your domain.
12+
* Support for China regions (thanks to @yosefbs).
13+
* Update default container environment to Python 3.10.
14+
315
## v0.21.0 (2022-10-04)
416

517
This release is just security patches in the dependencies.

Diff for: QuickStart.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ an older version of JupyterLab and want to use GUI interface, use one of the fol
4949
| JupyterLab Version | Extension Release |
5050
| ------------------ | ----------------------- |
5151
| 3.x | [latest][release] |
52-
| 2.x | [v0.21.0][release-2.x] |
52+
| 2.x | [v0.22.0][release-2.x] |
5353
| 1.x | [v0.19.0][release-1.x] |
5454

5555
If you want to schedule notebooks without using the library, there are resources included in the
5656
release to help you do that. See the [DIY instructions][DIY] on GitHub for details.
5757

5858
[release]: https://github.com/aws-samples/sagemaker-run-notebook/releases/latest
5959
[release-1.x]: https://github.com/aws-samples/sagemaker-run-notebook/releases/tag/v0.19.0
60-
[release-2.x]: https://github.com/aws-samples/sagemaker-run-notebook/releases/tag/v0.21.0
60+
[release-2.x]: https://github.com/aws-samples/sagemaker-run-notebook/releases/tag/v0.22.0
6161
[DIY]: https://github.com/aws-samples/sagemaker-run-notebook/blob/master/DIY.md
6262

6363
## Setting up your environment
@@ -69,7 +69,7 @@ To follow this recipe, you'll need to have AWS credentials set up that give you
6969
You can install the library directly from the GitHub release using pip:
7070

7171
```sh
72-
$ pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v0.21.0/sagemaker_run_notebook-0.21.0.tar.gz
72+
$ pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v0.22.0/sagemaker_run_notebook-0.22.0.tar.gz
7373
```
7474

7575
This installs the sagemaker-run-notebook library, CLI tool and the JupyterLab 3.x plug-in. After installation, you will need to restart any currently running JupyterLab servers to activate the plug-in.

Diff for: build-dist-files.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# They all live in the subdirectory "manual_dist/"
1212

13-
VERSION=0.21.0
13+
VERSION=0.22.0
1414

1515
make artifacts docs
1616

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = "Amazon Web Services"
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = "v0.21.0"
27+
release = "v0.22.0"
2828

2929

3030
# -- General configuration ---------------------------------------------------

Diff for: labextension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sagemaker_run_notebook",
3-
"version": "0.21.0",
3+
"version": "0.22.0",
44
"description": "Execute notebooks on a schedule in SageMaker",
55
"keywords": [
66
"jupyter",

Diff for: sagemaker_run_notebook/server_extension/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313

14-
version_info = (0, 21, 0)
14+
version_info = (0, 22, 0)
1515
flag = ""
1616

1717
__version__ = ".".join(map(str, version_info)) + flag

0 commit comments

Comments
 (0)