We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc313d commit 7ddeb70Copy full SHA for 7ddeb70
2 files changed
.github/workflows/release.yml
@@ -155,7 +155,7 @@ jobs:
155
uses: actions/upload-artifact@v6
156
with:
157
overwrite: true
158
- name: mlx-cuda
+ name: mlx-${{ matrix.toolkit }}-${{ matrix.arch }}
159
path: wheelhouse/mlx_cuda_*.whl
160
if-no-files-found: error
161
@@ -198,7 +198,7 @@ jobs:
198
steps:
199
- uses: actions/download-artifact@v7
200
201
+ name: mlx-cuda-*
202
path: dist
203
- name: Display structure of downloaded files
204
run: ls -R dist
mlx/version.h
@@ -4,7 +4,7 @@
4
5
#define MLX_VERSION_MAJOR 0
6
#define MLX_VERSION_MINOR 30
7
-#define MLX_VERSION_PATCH 2
+#define MLX_VERSION_PATCH 1
8
#define MLX_VERSION_NUMERIC \
9
(100000 * MLX_VERSION_MAJOR + 1000 * MLX_VERSION_MINOR + MLX_VERSION_PATCH)
10
0 commit comments