Skip to content

Commit 2a0f279

Browse files
committed
Push version to v0.21.0 (with release.sh)
1 parent 6d823ec commit 2a0f279

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

CHANGELOG.md

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

3+
## v0.21.0 (2022-10-04)
4+
5+
This release is just security patches in the dependencies.
6+
37
## v0.20.0 (2021-12-09)
48

59
This release provides support for JupyterLab 2.x.
@@ -76,7 +80,7 @@ Two small changes:
7680

7781
* Run notebooks written in R or other languages. See the newly added [R example][example] for information.
7882
* When using the CLI or Library, you can supply extra arguments to the SageMaker Processing Job used to execute the notebook. For example to allow your notebook to run for up to a full day, invoke your notebook with `run-notebook run foo.ipynb --extra '{"StoppingCondition":{"MaxRuntimeInSeconds":86400}}'`. Using this mechanism, you can add extra inputs and outputs, connect to a VPC, add environment variables, expand disk space, add the run to a specific experiment, etc. See the [documentation for SageMaker Processing Jobs][processing-jobs] for more.
79-
83+
8084
[example]: https://github.com/aws-samples/sagemaker-run-notebook/tree/master/examples/R
8185
[processing-jobs]: https://docs.aws.amazon.com/cli/latest/reference/sagemaker/create-processing-job.html
8286

QuickStart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ To follow this recipe, you'll need to have AWS credentials set up that give you
6363
You can install the library directly from the GitHub release using pip:
6464

6565
```sh
66-
$ pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v0.20.0/sagemaker_run_notebook-0.20.0.tar.gz
66+
$ pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v0.21.0/sagemaker_run_notebook-0.21.0.tar.gz
6767
```
6868

6969
This installs the sagemaker-run-notebook library and CLI tool. It also installs the JupyterLab plug-in but does not activate it. See below in [Activating the JupyterLab Extension](#activating-the-jupyterlab-extension) for more information.

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.20.0
13+
VERSION=0.21.0
1414

1515
make artifacts docs
1616

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.20.0"
27+
release = "v0.21.0"
2828

2929

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

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.20.0",
3+
"version": "0.21.0",
44
"description": "Execute notebooks on a schedule in SageMaker",
55
"keywords": [
66
"jupyter",

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, 20, 0)
14+
version_info = (0, 21, 0)
1515
flag = ""
1616

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

scripts/lifecycle-config/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ set -e
2626
sudo -u ec2-user -i <<'EOF'
2727
2828
# PARAMETERS
29-
VERSION=0.20.0
29+
VERSION=0.21.0
3030
3131
EXTENSION_NAME=sagemaker_run_notebook
3232

scripts/studio/install-run-notebook.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.20.0
1+
version=0.21.0
22
pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v${version}/sagemaker_run_notebook-${version}.tar.gz
33
jlpm config set cache-folder /tmp/yarncache
44
jupyter lab build --debug --minimize=False

0 commit comments

Comments
 (0)