Skip to content

Commit

Permalink
Merge pull request #208 from JuliaRegistries/dpa/stdlib
Browse files Browse the repository at this point in the history
Use RegistryTools
  • Loading branch information
DilumAluthge authored Jan 30, 2020
2 parents 34cc04a + e2065b3 commit 107e033
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RegistryCI"
uuid = "0c95cc5f-2f7e-43fe-82dd-79dbcba86b32"
authors = ["Dilum Aluthge <[email protected]>", "Fredrik Ekre <[email protected]>"]
version = "0.11.5"
version = "0.11.6"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand All @@ -11,6 +11,7 @@ HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
RegistryTools = "d1eb7eb1-105f-429d-abf5-b0f65cb9e2c4"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"

Expand All @@ -19,6 +20,7 @@ GitCommand = "1"
GitHub = "5.1.1"
HTTP = "0.8"
JSON = "0.19, 0.20, 0.21"
RegistryTools = "1.2"
TimeZones = "0.10"
julia = "1.3"

Expand Down
7 changes: 2 additions & 5 deletions src/registry_testing.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
import Pkg
import GitCommand
import RegistryTools
import Test

function gather_stdlib_uuids()
if VERSION < v"1.1"
return Set{Base.UUID}(x for x in keys(Pkg.Types.gather_stdlib_uuids()))
else
return Set{Base.UUID}(x for x in keys(Pkg.Types.stdlib()))
end
return Set{Base.UUID}(x for x in keys(RegistryTools.stdlibs()))
end

# For when you have a registry that has packages with dependencies obtained from
Expand Down

4 comments on commit 107e033

@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 register branch=master

@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 register branch=master

@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/8677

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 v0.11.6 -m "<description of version>" 107e033e65d19b11776f41c6d14698b61b815745
git push origin v0.11.6

@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 updated: JuliaRegistries/General/8677

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 v0.11.6 -m "<description of version>" 107e033e65d19b11776f41c6d14698b61b815745
git push origin v0.11.6

Please sign in to comment.