Skip to content

Commit 38ff738

Browse files
committed
Add version ot Project.toml
1 parent 098565c commit 38ff738

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ script:
3434
else;
3535
using UUIDs; import Pkg; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf";
3636
write(p, replace(read(p, String), uuid => uuid4()));
37-
Pkg.instantiate(); Pkg.test(; coverage=true);
37+
Pkg.instantiate(); push!(LOAD_PATH, "test"); Pkg.test(; coverage=true);
3838
end'
3939
after_success:
4040
# push coverage results to Coveralls

Project.toml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ keywords = ["package", "module", "API"]
44
license = "MIT"
55
desc = "Tools to help build a consistent API across various packages, use it, and enquire about it"
66
authors = ["ScottPJones <[email protected]>"]
7+
version = "0.1.3"
78

89
[deps]
910
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ build_script:
5252
end"
5353

5454
test_script:
55-
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"ModuleInterfaceTools\")"
55+
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); push!(LOAD_PATH, \"test\"); Pkg.test(\"ModuleInterfaceTools\")"

0 commit comments

Comments
 (0)