Skip to content

Commit

Permalink
Merge pull request #78 from ven-k/fix-ext-names
Browse files Browse the repository at this point in the history
Prefix parent package name to extension names
  • Loading branch information
jw3126 authored May 5, 2023
2 parents ad37774 + 0d0498f commit 39a5daf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ConstructionBase"
uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
authors = ["Takafumi Arakaki", "Rafael Schouten", "Jan Weidner"]
version = "1.5.1"
version = "1.5.2"

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

[extensions]
IntervalSetsExt = "IntervalSets"
StaticArraysExt = "StaticArrays"
ConstructionBaseIntervalSetsExt = "IntervalSets"
ConstructionBaseStaticArraysExt = "StaticArrays"

[compat]
IntervalSets = "0.5, 0.6, 0.7"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module IntervalSetsExt
module ConstructionBaseIntervalSetsExt

using ConstructionBase
using IntervalSets
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module StaticArraysExt
module ConstructionBaseStaticArraysExt

using ConstructionBase
using StaticArrays
Expand Down

2 comments on commit 39a5daf

@jw3126
Copy link
Member Author

@jw3126 jw3126 commented on 39a5daf May 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/82980

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.5.2 -m "<description of version>" 39a5daff8302f1ed14612fa839f1a7257a9e0fb2
git push origin v1.5.2

Please sign in to comment.