Skip to content

Commit 49be98e

Browse files
authored
Updates for Julia LTS switch to 1.10 (#137)
* Update docstrings for Julia 1.11 * Test against LTS 1.10 * Use min alias * Use lts alias
1 parent 856b399 commit 49be98e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/CI.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- "1.0" # Oldest supported version
22-
- "1.6" # LTS
21+
- "min" # Oldest supported version
22+
- "lts" # LTS
2323
- "1" # Latest Release
24-
- "pre" # ScopedValue support introduced in Julia 1.11
2524
os:
2625
- ubuntu-latest
2726
arch:

src/dispatch.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ end
2121
julia> m = first(methods(first, (String,)));
2222
2323
julia> m.sig
24-
Tuple{typeof(first), Any}
24+
Tuple{typeof(first), AbstractString}
2525
2626
julia> anonymous_signature(m)
27-
Tuple{Any}
27+
Tuple{AbstractString}
2828
```
2929
3030
```@meta

0 commit comments

Comments
 (0)