Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7'
- '1.6'
- '1.10'
- '1.12'
- 'pre'
Expand All @@ -30,7 +30,7 @@ jobs:
- 'x86'
exclude:
- os: macos-latest
version: '1.7'
version: '1.6'
- os: macos-latest
arch: 'x86'
steps:
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/CompatHelper.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name = "MutatePlainDataArray"
uuid = "3b0f367b-da20-4531-811a-c13cc92422b5"
authors = ["Haoran Ni <[email protected]> and contributors"]
version = "0.4.0"
version = "1.0.0-dev"

[compat]
julia = "1.7"
julia = "1.6"

[workspace]
projects = ["test"]
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ end

@testset "MutatePlainDataArray.jl" begin
@test isbitstype(TAB)
@test !isbitstype(TAI) && !ismutabletype(TAI)
@test ismutabletype(TAM)
@test !isbitstype(TAI)
@test !isbitstype(TAM)
@test isbitstype(TBB)
@test !isbitstype(TBI) && !ismutabletype(TBI)
@test ismutabletype(TBM)
@test !isbitstype(TBI)
@test !isbitstype(TBM)
@test isbitstype(TC)

@testset "aref validation" begin
Expand Down
Loading