Skip to content

Commit fc99f37

Browse files
committedJun 6, 2019
Disable debugging output
1 parent eb0f9f0 commit fc99f37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Packages", "API", "Modules"]
44
license = "MIT"
55
desc = "Macro to help manage module and package APIs"
66
authors = ["ScottPJones <scottjones@alum.mit.edu>"]
7-
version = "1.0.0"
7+
version = "1.0.1"
88

99
[deps]
1010

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
- julia_version: 1.1
4+
- julia_version: 1
55
- julia_version: latest
66

77
platform:

‎src/ModuleInterfaceTools.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function _api_reexport(curmod, modules)
293293
api = get_api(curmod, mod)
294294
l1, l2, l3 = getfield(api, :modules), getfield(api, :public), getfield(api, :public!)
295295
if !(isempty(l1) && isempty(l2) && isempty(l3))
296-
println("Reexport: api = $api:$l1,$l2,$l3")
296+
debug[] && println("Reexport: api = $api:$l1,$l2,$l3")
297297
m_eval(curmod, Expr( :export, l1..., l2..., l3... ))
298298
end
299299
end

2 commit comments

Comments
 (2)

ScottPJones commented on Jun 6, 2019

@ScottPJones
MemberAuthor

JuliaRegistrator commented on Jun 6, 2019

@JuliaRegistrator

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.