Skip to content

Commit

Permalink
Merge pull request #4 from devmotion/datastructures
Browse files Browse the repository at this point in the history
Clean dependencies and add CompatHelper
  • Loading branch information
thautwarm authored Aug 22, 2020
2 parents df49979 + 2c7674e commit 9f895b0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
7 changes: 2 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
name = "NameResolution"
uuid = "71a1bf82-56d0-4bbc-8a3c-48b961074391"
authors = ["thautwarm"]
version = "0.1.4"
version = "0.1.5"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
PrettyPrint = "8162dcfd-2161-5ef2-ae6c-7681170c5f98"

[compat]
DataStructures = "^0.17"
PrettyPrint = "^0.2.0"
julia = "1"

[extras]
PrettyPrint = "8162dcfd-2161-5ef2-ae6c-7681170c5f98"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "PrettyPrint"]
test = ["Test"]

2 comments on commit 9f895b0

@thautwarm
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/19961

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 v0.1.5 -m "<description of version>" 9f895b0aa885d8d38330144ffec07a993350fb46
git push origin v0.1.5

Please sign in to comment.