Skip to content

Commit

Permalink
Merge pull request #36 from NVIDIA/update-version
Browse files Browse the repository at this point in the history
Release version 6.1.1
  • Loading branch information
roclark authored Feb 22, 2021
2 parents a49ec66 + 36b4117 commit 4d203aa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Using `wget`, download the binary using the address from the previous step to al
remote machines which will be tested, for example:

```bash
wget https://github.com/NVIDIA/Bobber/releases/download/v6.0.0/nvidia_bobber-6.0.0-py3-none-any.whl
wget https://github.com/NVIDIA/Bobber/releases/download/v6.1.1/nvidia_bobber-6.1.1-py3-none-any.whl
```

## Python dependency installation
Expand All @@ -64,14 +64,14 @@ The installation can be verified with `pip3 freeze` after completion:

```bash
$ pip3 freeze | grep bobber
nvidia-bobber==6.0.0
nvidia-bobber==6.1.1
```

Bobber can also be verified by printing the usage statement:

```
$ bobber --help
usage: Bobber Version: 6.0.0 [-h] command ...
usage: Bobber Version: 6.1.1 [-h] command ...
positional arguments:
command
Expand Down Expand Up @@ -104,14 +104,14 @@ tests, run the command on the node to be tested.
$ bobber build
Building a new image. This may take a while...
...
nvidia/bobber:6.0.0 successfully built
nvidia/bobber:6.1.1 successfully built
```

After building, verify the image is accessible in Docker:

```bash
$ docker images | grep nvidia/bobber
nvidia/bobber 6.0.0 c697a75ee482 36 minutes ago 12.4GB
nvidia/bobber 6.1.1 c697a75ee482 36 minutes ago 12.4GB
```

## Save container
Expand All @@ -126,10 +126,10 @@ If running on a single node, this step is not required.

```bash
$ bobber export
Exporting nvidia/bobber:6.0.0 to "nvidia_bobber_6.0.0.tar". This may take a while...
nvidia/bobber:6.0.0 saved to nvidia_bobber_6.0.0.tar
Exporting nvidia/bobber:6.1.1 to "nvidia_bobber_6.1.1.tar". This may take a while...
nvidia/bobber:6.1.1 saved to nvidia_bobber_6.1.1.tar
$ ls
nvidia_bobber_6.0.0.tar
nvidia_bobber_6.1.1.tar
```

## Copy container to other nodes
Expand Down Expand Up @@ -161,7 +161,7 @@ On all other nodes, load the copied Docker image.
```bash
$ docker load < nvidia_bobber_{version}.tar
$ docker images | grep bobber
nvidia/bobber 6.0.0 c697a75ee482 36 minutes ago 12.4GB
nvidia/bobber 6.1.1 c697a75ee482 36 minutes ago 12.4GB
```

## Ensure shared filesystem is mounted, if necessary
Expand Down
2 changes: 1 addition & 1 deletion bobber/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-License-Identifier: MIT
__version__ = '6.1.0'
__version__ = '6.1.1'
8 changes: 4 additions & 4 deletions docs/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ run:
./build-dev-wheel
```

If the current version of the package is `6.0.0`, this will generated a new
If the current version of the package is `6.1.1`, this will generated a new
wheel in the local `dist/` directory (which will be created if not already done)
with the version `6.0.0.dev20210211161542` depending on the time the script was
with the version `6.1.1.dev20210222113637` depending on the time the script was
run.

Likewise, running
Expand All @@ -71,13 +71,13 @@ Likewise, running
./build-dev-wheel patch
```

will generate a wheel in `dist/` with version `6.0.1.dev20210211161542` and
will generate a wheel in `dist/` with version `6.1.2.dev20210222113637` and

```
./build-dev-wheel minor
```

will generate a wheel in `dist/` with version `6.1.0.dev20210211161542`.
will generate a wheel in `dist/` with version `6.2.0.dev20210222113637`.

To generate a wheel manually without altering the version number, run

Expand Down

0 comments on commit 4d203aa

Please sign in to comment.