Skip to content

Commit

Permalink
Disable debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jun 6, 2019
1 parent eb0f9f0 commit fc99f37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["Packages", "API", "Modules"]
license = "MIT"
desc = "Macro to help manage module and package APIs"
authors = ["ScottPJones <[email protected]>"]
version = "1.0.0"
version = "1.0.1"

[deps]

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.1
- julia_version: 1
- julia_version: latest

platform:
Expand Down
2 changes: 1 addition & 1 deletion src/ModuleInterfaceTools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function _api_reexport(curmod, modules)
api = get_api(curmod, mod)
l1, l2, l3 = getfield(api, :modules), getfield(api, :public), getfield(api, :public!)
if !(isempty(l1) && isempty(l2) && isempty(l3))
println("Reexport: api = $api:$l1,$l2,$l3")
debug[] && println("Reexport: api = $api:$l1,$l2,$l3")
m_eval(curmod, Expr( :export, l1..., l2..., l3... ))
end
end
Expand Down

2 comments on commit fc99f37

@ScottPJones
Copy link
Member Author

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

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.0.1 -m "<description of version>" fc99f3788e218f0820dd899d035b3192da44084e
git push origin v1.0.1

Please sign in to comment.