Skip to content

Commit 7dab605

Browse files
committed
bump version to 22.12.1
1 parent bfdd7e3 commit 7dab605

File tree

59 files changed

+174
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+174
-174
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
rapids-version:
77
type: string
8-
default: "22.12.0"
8+
default: "22.12.1"
99
description: "RAPIDS version"
1010
make-release:
1111
type: boolean

USAGE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ The following will retrieve the docker image with each library (+ its native and
2828
```bash
2929
REPO=ghcr.io/rapidsai/node
3030

31-
VERSIONS="22.12.0-runtime-node16.15.1-cuda11-ubuntu20.04"
31+
VERSIONS="22.12.1-runtime-node16.15.1-cuda11-ubuntu20.04"
3232
docker pull $REPO:$VERSIONS-cudf
3333
docker pull $REPO:$VERSIONS-cuml
3434
docker pull $REPO:$VERSIONS-cugraph
3535
docker pull $REPO:$VERSIONS-cuspatial
3636

37-
VERSIONS="22.12.0-runtime-node16.15.1-cuda11-ubuntu20.04"
37+
VERSIONS="22.12.1-runtime-node16.15.1-cuda11-ubuntu20.04"
3838
docker pull $REPO:$VERSIONS-glfw
3939

4040
# Includes all the above RAPIDS libraries in a single image
@@ -50,7 +50,7 @@ Like the official node images, the default command in the runtime images is `nod
5050

5151
```bash
5252
REPO=ghcr.io/rapidsai/node
53-
VERSIONS="22.12.0-runtime-node16.15.1-cuda11-ubuntu20.04"
53+
VERSIONS="22.12.1-runtime-node16.15.1-cuda11-ubuntu20.04"
5454

5555
# Be sure to pass either the `--runtime=nvidia` or `--gpus` flag!
5656
docker run --rm --gpus=0 $REPO:$VERSIONS-cudf \
@@ -67,7 +67,7 @@ You can mount your host's X11 socket and `$DISPLAY` envvar, then launch demos th
6767

6868
```bash
6969
REPO=ghcr.io/rapidsai/node
70-
VERSIONS="22.12.0-runtime-node16.15.1-cuda11-ubuntu20.04"
70+
VERSIONS="22.12.1-runtime-node16.15.1-cuda11-ubuntu20.04"
7171

7272
# Be sure to pass either the `--runtime=nvidia` or `--gpus` flag!
7373
docker run --rm \
@@ -94,7 +94,7 @@ You can use the following technique to install the npm-packed modules into anoth
9494

9595
```bash
9696
REPO=ghcr.io/rapidsai/node
97-
VERSIONS="22.12.0-devel-node16.15.1-cuda11-ubuntu20.04"
97+
VERSIONS="22.12.1-devel-node16.15.1-cuda11-ubuntu20.04"
9898

9999
# Pull the latest image of the packaged .tgz artifacts
100100
docker pull $REPO:$VERSIONS-packages

docker-compose.devel.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ x-main-service-settings: &main_service_settings
3333
XDG_SESSION_TYPE: "${XDG_SESSION_TYPE:-}"
3434
XDG_RUNTIME_DIR: "${XDG_RUNTIME_DIR:-/run/user/$UID}"
3535
LIBCUDF_KERNEL_CACHE_PATH: "/opt/rapids/node/.cache/jit"
36-
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.00}"
36+
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.10}"
3737
DBUS_SESSION_BUS_ADDRESS: "${DBUS_SESSION_BUS_ADDRESS:-unix:path=/run/user/$UID/bus}"
3838
cap_add:
3939
- SYS_ADMIN
@@ -45,7 +45,7 @@ services:
4545

4646
main:
4747
<<: *main_service_settings
48-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
48+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
4949
secrets:
5050
- sccache_credentials
5151
build:
@@ -75,12 +75,12 @@ services:
7575

7676
notebook:
7777
<<: *main_service_settings
78-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-notebook
78+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-notebook
7979
build:
8080
<<: *base_build_settings
8181
dockerfile: dev/dockerfiles/devel/notebook.Dockerfile
8282
args:
83-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
83+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
8484
environment:
8585
<<: *main_environment_settings
8686
QT_AUTO_SCREEN_SCALE_FACTOR: 0
@@ -97,7 +97,7 @@ services:
9797

9898
packages:
9999
<<: *base_service_settings
100-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-packages
100+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-packages
101101
build:
102102
<<: *base_build_settings
103103
dockerfile: dev/dockerfiles/devel/package.Dockerfile
@@ -112,8 +112,8 @@ services:
112112
SCCACHE_REGION: "${SCCACHE_REGION:-us-west-2}"
113113
SCCACHE_BUCKET: "${SCCACHE_BUCKET:-node-rapids-sccache}"
114114
SCCACHE_IDLE_TIMEOUT: "${SCCACHE_IDLE_TIMEOUT:-32768}"
115-
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.00}"
116-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
115+
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.10}"
116+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
117117

118118
secrets:
119119
sccache_credentials:

docker-compose.runtime.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ x-main-service-settings: &main_service_settings
2121
build: &main_build_settings
2222
<<: *base_build_settings
2323
args: &main_build_args
24-
DEVEL_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
25-
BUILD_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-packages
24+
DEVEL_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
25+
BUILD_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-packages
2626
environment: &main_environment_settings
2727
<<: *base_environment_settings
2828
# Use the host's X11 display
@@ -34,111 +34,111 @@ services:
3434

3535
base:
3636
<<: *base_service_settings
37-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
37+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
3838
build:
3939
<<: *base_build_settings
4040
dockerfile: dev/dockerfiles/runtime/base.Dockerfile
4141
args:
4242
UID: ${UID:-1000}
4343
AMD64_BASE: nvidia/cuda:${CUDA_VERSION:-11.6.2}-base-${LINUX_VERSION:-ubuntu20.04}
4444
ARM64_BASE: nvidia/cuda:${CUDA_VERSION:-11.6.2}-base-${LINUX_VERSION:-ubuntu20.04}
45-
DEVEL_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
45+
DEVEL_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-devel-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
4646

4747
main:
4848
<<: *main_service_settings
49-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
49+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-main
5050
build:
5151
<<: *main_build_settings
5252
dockerfile: dev/dockerfiles/runtime/main.Dockerfile
5353
args:
5454
<<: *main_build_args
5555
UCX_VERSION: ${UCX_VERSION:-1.12.1}
5656
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
57-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
57+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
5858

5959
demo:
6060
<<: *main_service_settings
61-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-demo
61+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-demo
6262
build:
6363
<<: *main_build_settings
6464
dockerfile: dev/dockerfiles/runtime/demo.Dockerfile
6565
args:
6666
<<: *main_build_args
6767
UCX_VERSION: ${UCX_VERSION:-1.12.1}
6868
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
69-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
69+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
7070

7171
glfw:
7272
<<: *main_service_settings
73-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-glfw
73+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-glfw
7474
build:
7575
<<: *main_build_settings
7676
dockerfile: dev/dockerfiles/runtime/glfw.Dockerfile
7777
args:
7878
<<: *main_build_args
79-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
79+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
8080

8181
cudf:
8282
<<: *main_service_settings
83-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cudf
83+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cudf
8484
build:
8585
<<: *main_build_settings
8686
dockerfile: dev/dockerfiles/runtime/cudf.Dockerfile
8787
args:
8888
<<: *main_build_args
89-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
89+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
9090

9191
sql:
9292
<<: *main_service_settings
93-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-sql
93+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-sql
9494
build:
9595
<<: *main_build_settings
9696
dockerfile: dev/dockerfiles/runtime/sql.Dockerfile
9797
args:
9898
<<: *main_build_args
9999
UCX_VERSION: ${UCX_VERSION:-1.12.1}
100100
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
101-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
101+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
102102

103103
cuml:
104104
<<: *main_service_settings
105-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cuml
105+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cuml
106106
build:
107107
<<: *main_build_settings
108108
dockerfile: dev/dockerfiles/runtime/cuml.Dockerfile
109109
args:
110110
<<: *main_build_args
111-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
111+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
112112

113113
cugraph:
114114
<<: *main_service_settings
115-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cugraph
115+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cugraph
116116
build:
117117
<<: *main_build_settings
118118
dockerfile: dev/dockerfiles/runtime/cugraph.Dockerfile
119119
args:
120120
<<: *main_build_args
121-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
121+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
122122

123123
cuspatial:
124124
<<: *main_service_settings
125-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cuspatial
125+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-cuspatial
126126
build:
127127
<<: *main_build_settings
128128
dockerfile: dev/dockerfiles/runtime/cuspatial.Dockerfile
129129
args:
130130
<<: *main_build_args
131-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
131+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-base
132132

133133
notebook:
134134
<<: *main_service_settings
135-
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-notebook
135+
image: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-notebook
136136
build:
137137
<<: *main_build_settings
138138
dockerfile: dev/dockerfiles/runtime/notebook.Dockerfile
139139
args:
140140
<<: *main_build_args
141-
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.0}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-demo
141+
FROM_IMAGE: ${REPOSITORY:-ghcr.io/rapidsai/node}:${npm_package_version:-22.12.1}-runtime-node${NODE_VERSION:-16.15.1}-cuda${CUDA_VERSION_MAJOR:-11}-${LINUX_VERSION:-ubuntu20.04}-demo
142142
volumes:
143143
- "/etc/fonts:/etc/fonts:ro"
144144
- "/tmp/.X11-unix:/tmp/.X11-unix:rw"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "22.12.0",
2+
"version": "22.12.1",
33
"npmClient": "yarn",
44
"skipGit": true,
55
"useWorkspaces": true,

modules/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidsai/core",
3-
"version": "22.12.0",
3+
"version": "22.12.1",
44
"description": "Shared CMake modules, TypeScript configurations, and C++ headers for RAPIDS node native modules",
55
"main": "index.js",
66
"types": "build/js",

modules/cuda/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidsai/cuda",
3-
"version": "22.12.0",
3+
"version": "22.12.1",
44
"description": "NVIDIA CUDA driver and runtime API bindings",
55
"main": "index.js",
66
"types": "build/js",
@@ -54,7 +54,7 @@
5454
"dev:cpack:enabled": "echo $npm_package_name"
5555
},
5656
"dependencies": {
57-
"@rapidsai/core": "~22.12.0"
57+
"@rapidsai/core": "~22.12.1"
5858
},
5959
"files": [
6060
"LICENSE",

modules/cudf/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidsai/cudf",
3-
"version": "22.12.0",
3+
"version": "22.12.1",
44
"description": "cuDF - NVIDIA RAPIDS GPU DataFrame Library",
55
"license": "Apache-2.0",
66
"main": "index.js",
@@ -54,8 +54,8 @@
5454
"dev:cpack:enabled": "echo $npm_package_name"
5555
},
5656
"dependencies": {
57-
"@rapidsai/cuda": "~22.12.0",
58-
"@rapidsai/rmm": "~22.12.0",
57+
"@rapidsai/cuda": "~22.12.1",
58+
"@rapidsai/rmm": "~22.12.1",
5959
"apache-arrow": "^9.0.0"
6060
},
6161
"devDependencies": {

modules/cugraph/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidsai/cugraph",
3-
"version": "22.12.0",
3+
"version": "22.12.1",
44
"description": "cuGraph - NVIDIA RAPIDS Graph Analytics Library",
55
"license": "Apache-2.0",
66
"main": "index.js",
@@ -54,10 +54,10 @@
5454
"dev:cpack:enabled": "echo $npm_package_name"
5555
},
5656
"dependencies": {
57-
"@rapidsai/cudf": "~22.12.0"
57+
"@rapidsai/cudf": "~22.12.1"
5858
},
5959
"devDependencies": {
60-
"@rapidsai/cuml": "~22.12.0"
60+
"@rapidsai/cuml": "~22.12.1"
6161
},
6262
"files": [
6363
"LICENSE",

modules/cuml/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidsai/cuml",
3-
"version": "22.12.0",
3+
"version": "22.12.1",
44
"description": "cuML - NVIDIA RAPIDS Machine Learning Library",
55
"license": "Apache-2.0",
66
"main": "index.js",
@@ -54,7 +54,7 @@
5454
"dev:cpack:enabled": "echo $npm_package_name"
5555
},
5656
"dependencies": {
57-
"@rapidsai/cudf": "~22.12.0"
57+
"@rapidsai/cudf": "~22.12.1"
5858
},
5959
"files": [
6060
"LICENSE",

0 commit comments

Comments
 (0)