Skip to content

Commit d39ec41

Browse files
authored
Add dependencies (#3)
1 parent 6ba5a2f commit d39ec41

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Dilum Aluthge, contributors
3+
Copyright (c) 2021 Dilum Aluthge and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Project.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
name = "GitRepl"
22
uuid = "86bc0129-654e-4751-9b96-b173469afcbd"
33
authors = ["Dilum Aluthge", "contributors"]
4-
version = "0.1.0"
4+
version = "1.0.0-DEV"
55

6-
[extras]
7-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
[deps]
7+
GitCommand = "49b5b516-ca3f-4003-a081-42bdcf55082d"
8+
ReplMaker = "b873ce64-0db9-51f5-a568-4457d8e49576"
89

910
[compat]
11+
GitCommand = "2.2.1"
12+
ReplMaker = "0.2.4"
1013
julia = "1.6"
1114

15+
[extras]
16+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
17+
1218
[targets]
1319
test = ["Test"]

docs/make.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DocMeta.setdocmeta!(GitRepl, :DocTestSetup, :(using GitRepl); recursive=true)
55

66
makedocs(;
77
modules=[GitRepl],
8-
authors="Dilum Aluthge, contributors",
8+
authors="Dilum Aluthge and contributors",
99
repo="https://github.com/JuliaVersionControl/GitRepl.jl/blob/{commit}{path}#{line}",
1010
sitename="GitRepl.jl",
1111
format=Documenter.HTML(;
@@ -16,6 +16,7 @@ makedocs(;
1616
pages=[
1717
"Home" => "index.md",
1818
],
19+
strict=true,
1920
)
2021

2122
deploydocs(;

src/GitRepl.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module GitRepl
22

3-
# Write your package code here.
3+
import GitCommand
4+
import ReplMaker
45

5-
end
6+
end # module

test/runtests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ using GitRepl
22
using Test
33

44
@testset "GitRepl.jl" begin
5-
# Write your tests here.
65
end

0 commit comments

Comments
 (0)