Skip to content

Commit 9a7dd1e

Browse files
Don't warn on macOS 26 and bump version (#620)
1 parent 1e1e193 commit 9a7dd1e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Metal"
22
uuid = "dde4c033-4e86-420c-a63e-0dd931031962"
3-
version = "1.6.2"
3+
version = "1.6.3"
44

55
[deps]
66
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ julia> Metal.versioninfo()
6666
macOS 15.5.0, Darwin 24.5.0
6767
6868
Toolchain:
69-
- Julia: 1.11.5
69+
- Julia: 1.11.6
7070
- LLVM: 16.0.6
7171
7272
Julia packages:
73-
- Metal.jl: 1.6.2
74-
- GPUArrays: 11.2.2
75-
- GPUCompiler: 1.5.2
76-
- KernelAbstractions: 0.9.35
77-
- ObjectiveC: 3.4.1
78-
- LLVM: 9.4.0
79-
- LLVMDowngrader_jll: 0.6.0+0
73+
- Metal.jl: 1.6.3
74+
- GPUArrays: 11.2.3
75+
- GPUCompiler: 1.6.1
76+
- KernelAbstractions: 0.9.37
77+
- ObjectiveC: 3.4.2
78+
- LLVM: 9.4.2
79+
- LLVMDowngrader_jll: 0.6.0+1
8080
8181
1 device:
8282
- Apple M2 Max (64.000 KiB allocated)

src/initialization.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ function __init__()
3636
if macos_version() < v"13"
3737
@error "Metal.jl requires macOS 13 or later"
3838
return
39-
elseif macos_version() >= v"16"
40-
@warn "Metal.jl has not been tested on macOS 16 or later, you may run into issues."
39+
elseif macos_version() >= v"27"
40+
@warn "Metal.jl has not been tested on macOS 27 or later, you may run into issues."
4141
end
4242

4343
if Base.JLOptions().debug_level >= 2

0 commit comments

Comments
 (0)