Skip to content

Commit

Permalink
Merge pull request #9 from jw3126/pr
Browse files Browse the repository at this point in the history
fix issue with revise
  • Loading branch information
jw3126 authored Sep 19, 2023
2 parents 28345bd + 35d8a3d commit 560b494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StructHelpers"
uuid = "4093c41a-2008-41fd-82b8-e3f9d02b504f"
authors = ["Jan Weidner <[email protected]> and contributors"]
version = "1.1.0"
version = "1.1.1"

[deps]
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
Expand Down
2 changes: 1 addition & 1 deletion src/StructHelpers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ macro batteries(T, kw...)
fieldnames = Base.fieldnames(Base.eval(__module__, T))
end
need_StructTypes = nt.StructTypes
ST = gensym("ST")
ST = Symbol("#StructTypes2392") # a gensym causes Revise.jl issues
if need_StructTypes
push!(ret.args, :(import StructTypes as $ST))
end
Expand Down

2 comments on commit 560b494

@jw3126
Copy link
Owner Author

@jw3126 jw3126 commented on 560b494 Sep 19, 2023

Choose a reason for hiding this comment

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

@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/91671

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.1.1 -m "<description of version>" 560b49442c361fcb8dbe65b622844566cf242074
git push origin v1.1.1

Please sign in to comment.