Skip to content

Commit

Permalink
Push version to v0.21.0 (with release.sh)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfaulhaber committed Oct 5, 2022
1 parent 6d823ec commit 2a0f279
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.21.0 (2022-10-04)

This release is just security patches in the dependencies.

## v0.20.0 (2021-12-09)

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

* Run notebooks written in R or other languages. See the newly added [R example][example] for information.
* 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.

[example]: https://github.com/aws-samples/sagemaker-run-notebook/tree/master/examples/R
[processing-jobs]: https://docs.aws.amazon.com/cli/latest/reference/sagemaker/create-processing-job.html

Expand Down
2 changes: 1 addition & 1 deletion QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ To follow this recipe, you'll need to have AWS credentials set up that give you
You can install the library directly from the GitHub release using pip:

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

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.
Expand Down
2 changes: 1 addition & 1 deletion build-dist-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# They all live in the subdirectory "manual_dist/"

VERSION=0.20.0
VERSION=0.21.0

make artifacts docs

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "Amazon Web Services"

# The full version, including alpha/beta/rc tags
release = "v0.20.0"
release = "v0.21.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion labextension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sagemaker_run_notebook",
"version": "0.20.0",
"version": "0.21.0",
"description": "Execute notebooks on a schedule in SageMaker",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion sagemaker_run_notebook/server_extension/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.

version_info = (0, 20, 0)
version_info = (0, 21, 0)
flag = ""

__version__ = ".".join(map(str, version_info)) + flag
2 changes: 1 addition & 1 deletion scripts/lifecycle-config/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set -e
sudo -u ec2-user -i <<'EOF'
# PARAMETERS
VERSION=0.20.0
VERSION=0.21.0
EXTENSION_NAME=sagemaker_run_notebook
Expand Down
2 changes: 1 addition & 1 deletion scripts/studio/install-run-notebook.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.20.0
version=0.21.0
pip install https://github.com/aws-samples/sagemaker-run-notebook/releases/download/v${version}/sagemaker_run_notebook-${version}.tar.gz
jlpm config set cache-folder /tmp/yarncache
jupyter lab build --debug --minimize=False
Expand Down

0 comments on commit 2a0f279

Please sign in to comment.