Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Sep 13, 2020
0 parents commit 258eaa5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name = "Artifacts"
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
version = "1.3.0"

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

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Artifacts.jl

This is a wrapper package meant to bridge the gap for packages that want to use the [`Artifacts`](https://github.com/JuliaLang/julia/tree/master/stdlib/Artifacts) as a dependency within packages that still support Julia versions older than 1.6.
5 changes: 5 additions & 0 deletions src/Artifacts.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Artifacts
using Pkg.Artifacts
export artifact_exists, artifact_path, artifact_meta, artifact_hash,
find_artifacts_toml, @artifact_str
end

2 comments on commit 258eaa5

@staticfloat
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/21327

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.3.0 -m "<description of version>" 258eaa57c9ec0d488c2082743644cd03b7691408
git push origin v1.3.0

Also, note the warning: This looks like a new registration that registers version 1.3.0.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please # to comment.