Skip to content

Commit

Permalink
Remove LibGit2 from the list of dependencies (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge committed Jun 8, 2021
1 parent 8ef9bd3 commit 769ea63
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Iain Dunning
Copyright (c) 2014 Iain Dunning and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
5 changes: 1 addition & 4 deletions Project.toml
@@ -1,10 +1,7 @@
name = "CoverageTools"
uuid = "c36e975a-824b-4404-a568-ef97ca766997"
authors = ["Iain Dunning <iaindunning@gmail.com>"]
version = "1.2.2"

[deps]
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
version = "1.2.3"

[compat]
julia = "0.7, 1"
Expand Down
1 change: 0 additions & 1 deletion src/CoverageTools.jl
Expand Up @@ -5,7 +5,6 @@
# https://github.com/JuliaCI/CoverageTools.jl
#######################################################################
module CoverageTools
using LibGit2

export process_folder, process_file
export clean_folder, clean_file
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Expand Up @@ -4,7 +4,7 @@
# https://github.com/JuliaCI/CoverageTools.jl
#######################################################################

using CoverageTools, Test, LibGit2
using CoverageTools, Test

if VERSION < v"1.1-"
isnothing(x) = false
Expand Down

2 comments on commit 769ea63

@DilumAluthge
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/38435

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

git tag -a v1.2.3 -m "<description of version>" 769ea6358cc41562688bf00fb9b3a479485309ad
git push origin v1.2.3

Please sign in to comment.