Skip to content

Commit 7ddeb70

Browse files
author
Awni Hannun
authored
fix cuda release part 2 (#2926)
1 parent 1fc313d commit 7ddeb70

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
uses: actions/upload-artifact@v6
156156
with:
157157
overwrite: true
158-
name: mlx-cuda
158+
name: mlx-${{ matrix.toolkit }}-${{ matrix.arch }}
159159
path: wheelhouse/mlx_cuda_*.whl
160160
if-no-files-found: error
161161

@@ -198,7 +198,7 @@ jobs:
198198
steps:
199199
- uses: actions/download-artifact@v7
200200
with:
201-
name: mlx-cuda
201+
name: mlx-cuda-*
202202
path: dist
203203
- name: Display structure of downloaded files
204204
run: ls -R dist

mlx/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define MLX_VERSION_MAJOR 0
66
#define MLX_VERSION_MINOR 30
7-
#define MLX_VERSION_PATCH 2
7+
#define MLX_VERSION_PATCH 1
88
#define MLX_VERSION_NUMERIC \
99
(100000 * MLX_VERSION_MAJOR + 1000 * MLX_VERSION_MINOR + MLX_VERSION_PATCH)
1010

0 commit comments

Comments
 (0)