Skip to content

Commit

Permalink
bump version to 22.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jun 2, 2023
1 parent bfdd7e3 commit 7dab605
Show file tree
Hide file tree
Showing 59 changed files with 174 additions and 174 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
rapids-version:
type: string
default: "22.12.0"
default: "22.12.1"
description: "RAPIDS version"
make-release:
type: boolean
Expand Down
10 changes: 5 additions & 5 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ The following will retrieve the docker image with each library (+ its native and
```bash
REPO=ghcr.io/rapidsai/node

VERSIONS="22.12.0-runtime-node16.15.1-cuda11-ubuntu20.04"
VERSIONS="22.12.1-runtime-node16.15.1-cuda11-ubuntu20.04"
docker pull $REPO:$VERSIONS-cudf
docker pull $REPO:$VERSIONS-cuml
docker pull $REPO:$VERSIONS-cugraph
docker pull $REPO:$VERSIONS-cuspatial

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

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

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

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

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

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

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

# Pull the latest image of the packaged .tgz artifacts
docker pull $REPO:$VERSIONS-packages
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ x-main-service-settings: &main_service_settings
XDG_SESSION_TYPE: "${XDG_SESSION_TYPE:-}"
XDG_RUNTIME_DIR: "${XDG_RUNTIME_DIR:-/run/user/$UID}"
LIBCUDF_KERNEL_CACHE_PATH: "/opt/rapids/node/.cache/jit"
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.00}"
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.10}"
DBUS_SESSION_BUS_ADDRESS: "${DBUS_SESSION_BUS_ADDRESS:-unix:path=/run/user/$UID/bus}"
cap_add:
- SYS_ADMIN
Expand All @@ -45,7 +45,7 @@ services:

main:
<<: *main_service_settings
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
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
secrets:
- sccache_credentials
build:
Expand Down Expand Up @@ -75,12 +75,12 @@ services:

notebook:
<<: *main_service_settings
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
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
build:
<<: *base_build_settings
dockerfile: dev/dockerfiles/devel/notebook.Dockerfile
args:
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
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
environment:
<<: *main_environment_settings
QT_AUTO_SCREEN_SCALE_FACTOR: 0
Expand All @@ -97,7 +97,7 @@ services:

packages:
<<: *base_service_settings
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
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
build:
<<: *base_build_settings
dockerfile: dev/dockerfiles/devel/package.Dockerfile
Expand All @@ -112,8 +112,8 @@ services:
SCCACHE_REGION: "${SCCACHE_REGION:-us-west-2}"
SCCACHE_BUCKET: "${SCCACHE_BUCKET:-node-rapids-sccache}"
SCCACHE_IDLE_TIMEOUT: "${SCCACHE_IDLE_TIMEOUT:-32768}"
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.00}"
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
RAPIDS_VERSION: "${npm_package_config_rapids_version:-22.12.10}"
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

secrets:
sccache_credentials:
Expand Down
44 changes: 22 additions & 22 deletions docker-compose.runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ x-main-service-settings: &main_service_settings
build: &main_build_settings
<<: *base_build_settings
args: &main_build_args
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
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
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
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
environment: &main_environment_settings
<<: *base_environment_settings
# Use the host's X11 display
Expand All @@ -34,111 +34,111 @@ services:

base:
<<: *base_service_settings
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
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
build:
<<: *base_build_settings
dockerfile: dev/dockerfiles/runtime/base.Dockerfile
args:
UID: ${UID:-1000}
AMD64_BASE: nvidia/cuda:${CUDA_VERSION:-11.6.2}-base-${LINUX_VERSION:-ubuntu20.04}
ARM64_BASE: nvidia/cuda:${CUDA_VERSION:-11.6.2}-base-${LINUX_VERSION:-ubuntu20.04}
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
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

main:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/main.Dockerfile
args:
<<: *main_build_args
UCX_VERSION: ${UCX_VERSION:-1.12.1}
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
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
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

demo:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/demo.Dockerfile
args:
<<: *main_build_args
UCX_VERSION: ${UCX_VERSION:-1.12.1}
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
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
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

glfw:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/glfw.Dockerfile
args:
<<: *main_build_args
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
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

cudf:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/cudf.Dockerfile
args:
<<: *main_build_args
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
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

sql:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/sql.Dockerfile
args:
<<: *main_build_args
UCX_VERSION: ${UCX_VERSION:-1.12.1}
LINUX_VERSION: ${LINUX_VERSION:-ubuntu20.04}
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
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

cuml:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/cuml.Dockerfile
args:
<<: *main_build_args
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
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

cugraph:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/cugraph.Dockerfile
args:
<<: *main_build_args
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
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

cuspatial:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/cuspatial.Dockerfile
args:
<<: *main_build_args
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
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

notebook:
<<: *main_service_settings
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
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
build:
<<: *main_build_settings
dockerfile: dev/dockerfiles/runtime/notebook.Dockerfile
args:
<<: *main_build_args
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
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
volumes:
- "/etc/fonts:/etc/fonts:ro"
- "/tmp/.X11-unix:/tmp/.X11-unix:rw"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "22.12.0",
"version": "22.12.1",
"npmClient": "yarn",
"skipGit": true,
"useWorkspaces": true,
Expand Down
2 changes: 1 addition & 1 deletion modules/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/core",
"version": "22.12.0",
"version": "22.12.1",
"description": "Shared CMake modules, TypeScript configurations, and C++ headers for RAPIDS node native modules",
"main": "index.js",
"types": "build/js",
Expand Down
4 changes: 2 additions & 2 deletions modules/cuda/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/cuda",
"version": "22.12.0",
"version": "22.12.1",
"description": "NVIDIA CUDA driver and runtime API bindings",
"main": "index.js",
"types": "build/js",
Expand Down Expand Up @@ -54,7 +54,7 @@
"dev:cpack:enabled": "echo $npm_package_name"
},
"dependencies": {
"@rapidsai/core": "~22.12.0"
"@rapidsai/core": "~22.12.1"
},
"files": [
"LICENSE",
Expand Down
6 changes: 3 additions & 3 deletions modules/cudf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/cudf",
"version": "22.12.0",
"version": "22.12.1",
"description": "cuDF - NVIDIA RAPIDS GPU DataFrame Library",
"license": "Apache-2.0",
"main": "index.js",
Expand Down Expand Up @@ -54,8 +54,8 @@
"dev:cpack:enabled": "echo $npm_package_name"
},
"dependencies": {
"@rapidsai/cuda": "~22.12.0",
"@rapidsai/rmm": "~22.12.0",
"@rapidsai/cuda": "~22.12.1",
"@rapidsai/rmm": "~22.12.1",
"apache-arrow": "^9.0.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions modules/cugraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/cugraph",
"version": "22.12.0",
"version": "22.12.1",
"description": "cuGraph - NVIDIA RAPIDS Graph Analytics Library",
"license": "Apache-2.0",
"main": "index.js",
Expand Down Expand Up @@ -54,10 +54,10 @@
"dev:cpack:enabled": "echo $npm_package_name"
},
"dependencies": {
"@rapidsai/cudf": "~22.12.0"
"@rapidsai/cudf": "~22.12.1"
},
"devDependencies": {
"@rapidsai/cuml": "~22.12.0"
"@rapidsai/cuml": "~22.12.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions modules/cuml/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/cuml",
"version": "22.12.0",
"version": "22.12.1",
"description": "cuML - NVIDIA RAPIDS Machine Learning Library",
"license": "Apache-2.0",
"main": "index.js",
Expand Down Expand Up @@ -54,7 +54,7 @@
"dev:cpack:enabled": "echo $npm_package_name"
},
"dependencies": {
"@rapidsai/cudf": "~22.12.0"
"@rapidsai/cudf": "~22.12.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions modules/cuspatial/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/cuspatial",
"version": "22.12.0",
"version": "22.12.1",
"description": "cuSpatial - NVIDIA RAPIDS GIS and Spatiotemporal Analytics Library",
"license": "Apache-2.0",
"main": "index.js",
Expand Down Expand Up @@ -54,7 +54,7 @@
"dev:cpack:enabled": "echo $npm_package_name"
},
"dependencies": {
"@rapidsai/cudf": "~22.12.0"
"@rapidsai/cudf": "~22.12.1"
},
"files": [
"LICENSE",
Expand Down
8 changes: 4 additions & 4 deletions modules/deck.gl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/deck.gl",
"version": "22.12.0",
"version": "22.12.1",
"description": "NVIDIA RAPIDS deck.gl components and utilities",
"license": "Apache-2.0",
"main": "index.js",
Expand Down Expand Up @@ -34,9 +34,9 @@
"@luma.gl/core": "8.5.16",
"@luma.gl/engine": "8.5.16",
"@luma.gl/webgl": "8.5.16",
"@rapidsai/core": "~22.12.0",
"@rapidsai/cuda": "~22.12.0",
"@rapidsai/cudf": "~22.12.0",
"@rapidsai/core": "~22.12.1",
"@rapidsai/cuda": "~22.12.1",
"@rapidsai/cudf": "~22.12.1",
"mjolnir.js": "2.7.1"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion modules/demo/api-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@rapidsai/demo-api-server",
"main": "index.js",
"version": "22.12.0",
"version": "22.12.1",
"license": "Apache-2.0",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
Expand Down
2 changes: 1 addition & 1 deletion modules/demo/client-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapidsai/demo-client-server",
"version": "22.12.0",
"version": "22.12.1",
"private": true,
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
Expand Down
Loading

0 comments on commit 7dab605

Please sign in to comment.