Skip to content

Commit

Permalink
Version 1.1.1 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy authored Jan 3, 2020
1 parent 3dc4a99 commit c3222c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SnoopCompile"
uuid = "aa65fe97-06da-5843-b5b1-d5d13cad87d2"
author = ["Tim Holy <tim.holy@gmail.com>"]
version = "1.1.0"
version = "1.1.1"

[deps]
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Expand Down
5 changes: 1 addition & 4 deletions src/parcel_snoopi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,7 @@ function reprcontext(mod::Module, @nospecialize(T::Type))
return rplain
catch
# Add full module context
rdec = repr(T; context=:module=>nothing)
ex = Meta.parse(rdec)
Core.eval(mod, ex)
return rdec
return repr(T; context=:module=>nothing)
end
end

Expand Down

2 comments on commit c3222c3

@timholy
Copy link
Owner Author

@timholy timholy commented on c3222c3 Jan 3, 2020

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/7480

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.1 -m "<description of version>" c3222c3ca353baf7f30bd990ebffb590e3bbfb32
git push origin v1.1.1

Please sign in to comment.