Skip to content

Commit 97eb9e3

Browse files
authored
Fix extension naming (#205)
1 parent 2b4eb29 commit 97eb9e3

8 files changed

+19
-19
lines changed

Project.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ComponentArrays"
22
uuid = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
33
authors = ["Jonnie Diegelman <[email protected]>"]
4-
version = "0.13.11"
4+
version = "0.13.12"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
@@ -34,12 +34,12 @@ StaticArrays = "1"
3434
julia = "1.6"
3535

3636
[extensions]
37-
ConstructionBaseExt = "ConstructionBase"
38-
GPUArraysExt = "GPUArrays"
39-
RecursiveArrayToolsExt = "RecursiveArrayTools"
40-
ReverseDiffExt = "ReverseDiff"
41-
SciMLBaseExt = "SciMLBase"
42-
StaticArraysExt = "StaticArrays"
37+
ComponentArraysConstructionBaseExt = "ConstructionBase"
38+
ComponentArraysGPUArraysExt = "GPUArrays"
39+
ComponentArraysRecursiveArrayToolsExt = "RecursiveArrayTools"
40+
ComponentArraysReverseDiffExt = "ReverseDiff"
41+
ComponentArraysSciMLBaseExt = "SciMLBase"
42+
ComponentArraysStaticArraysExt = "StaticArrays"
4343

4444
[extras]
4545
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"

ext/ConstructionBaseExt.jl renamed to ext/ComponentArraysConstructionBaseExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module ConstructionBaseExt
1+
module ComponentArraysConstructionBaseExt
22

33
using ComponentArrays
44
isdefined(Base, :get_extension) ? (using ConstructionBase) : (using ..ConstructionBase)

ext/GPUArraysExt.jl renamed to ext/ComponentArraysGPUArraysExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module GPUArraysExt
1+
module ComponentArraysGPUArraysExt
22

33
using ComponentArrays, LinearAlgebra
44
isdefined(Base, :get_extension) ? (using GPUArrays) : (using ..GPUArrays)

ext/RecursiveArrayToolsExt.jl renamed to ext/ComponentArraysRecursiveArrayToolsExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module RecursiveArrayToolsExt
1+
module ComponentArraysRecursiveArrayToolsExt
22

33
using ComponentArrays
44
isdefined(Base, :get_extension) ? (using RecursiveArrayTools) : (using ..RecursiveArrayTools)

ext/ReverseDiffExt.jl renamed to ext/ComponentArraysReverseDiffExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module ReverseDiffExt
1+
module ComponentArraysReverseDiffExt
22

33
using ComponentArrays
44
isdefined(Base, :get_extension) ? (using ReverseDiff) : (using ..ReverseDiff)

ext/SciMLBaseExt.jl renamed to ext/ComponentArraysSciMLBaseExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Plotting stuff
2-
module SciMLBaseExt
2+
module ComponentArraysSciMLBaseExt
33

44
using ComponentArrays
55
isdefined(Base, :get_extension) ? (using SciMLBase) : (using ..SciMLBase)

ext/StaticArraysExt.jl renamed to ext/ComponentArraysStaticArraysExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module StaticArraysExt
1+
module ComponentArraysStaticArraysExt
22

33
using ComponentArrays
44
isdefined(Base, :get_extension) ? (using StaticArrays) : (using ..StaticArrays)

src/ComponentArrays.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ include("compat/chainrulescore.jl")
5454

5555
function __init__()
5656
@static if !isdefined(Base, :get_extension)
57-
@require ConstructionBase="187b0558-2788-49d3-abe0-74a17ed4e7c9" include("../ext/ConstructionBaseExt.jl")
58-
@require SciMLBase="0bca4576-84f4-4d90-8ffe-ffa030f20462" include("../ext/SciMLBaseExt.jl")
59-
@require RecursiveArrayTools="731186ca-8d62-57ce-b412-fbd966d074cd" include("../ext/RecursiveArrayToolsExt.jl")
60-
@require StaticArrays="90137ffa-7385-5640-81b9-e52037218182" include("../ext/StaticArraysExt.jl")
61-
@require ReverseDiff="37e2e3b7-166d-5795-8a7a-e32c996b4267" include("../ext/ReverseDiffExt.jl")
62-
@require GPUArrays="0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" include("../ext/GPUArraysExt.jl")
57+
@require ConstructionBase="187b0558-2788-49d3-abe0-74a17ed4e7c9" include("../ext/ComponentArraysConstructionBaseExt.jl")
58+
@require SciMLBase="0bca4576-84f4-4d90-8ffe-ffa030f20462" include("../ext/ComponentArraysSciMLBaseExt.jl")
59+
@require RecursiveArrayTools="731186ca-8d62-57ce-b412-fbd966d074cd" include("../ext/ComponentArraysRecursiveArrayToolsExt.jl")
60+
@require StaticArrays="90137ffa-7385-5640-81b9-e52037218182" include("../ext/ComponentArraysStaticArraysExt.jl")
61+
@require ReverseDiff="37e2e3b7-166d-5795-8a7a-e32c996b4267" include("../ext/ComponentArraysReverseDiffExt.jl")
62+
@require GPUArrays="0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" include("../ext/ComponentArraysGPUArraysExt.jl")
6363
end
6464
end
6565

0 commit comments

Comments
 (0)