Skip to content

Commit 39a5daf

Browse files
authored
Merge pull request #78 from ven-k/fix-ext-names
Prefix parent package name to extension names
2 parents ad37774 + 0d0498f commit 39a5daf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ConstructionBase"
22
uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
33
authors = ["Takafumi Arakaki", "Rafael Schouten", "Jan Weidner"]
4-
version = "1.5.1"
4+
version = "1.5.2"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -11,8 +11,8 @@ IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
1111
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1212

1313
[extensions]
14-
IntervalSetsExt = "IntervalSets"
15-
StaticArraysExt = "StaticArrays"
14+
ConstructionBaseIntervalSetsExt = "IntervalSets"
15+
ConstructionBaseStaticArraysExt = "StaticArrays"
1616

1717
[compat]
1818
IntervalSets = "0.5, 0.6, 0.7"

ext/IntervalSetsExt.jl renamed to ext/ConstructionBaseIntervalSetsExt.jl

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

33
using ConstructionBase
44
using IntervalSets

ext/StaticArraysExt.jl renamed to ext/ConstructionBaseStaticArraysExt.jl

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

33
using ConstructionBase
44
using StaticArrays

0 commit comments

Comments
 (0)