diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml new file mode 100644 index 0000000..c9470f0 --- /dev/null +++ b/.github/workflows/CompatHelper.yml @@ -0,0 +1,14 @@ +name: CompatHelper +on: + schedule: + - cron: 16 3 * * * +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Pkg.add("CompatHelper") + run: julia -e 'using Pkg; Pkg.add("CompatHelper")' + - name: CompatHelper.main() + run: julia -e 'using CompatHelper; CompatHelper.main()' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..6591b77 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,12 @@ +name: TagBot +on: + schedule: + - cron: 27 8 * * * +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.DOCUMENTER_KEY }} diff --git a/.travis.yml b/.travis.yml index dcfb9d9..49ba197 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ notifications: jobs: include: - stage: "Documentation" - julia: 1.0 + julia: 1.4 os: linux script: - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); diff --git a/Project.toml b/Project.toml index 87817c5..41e1f54 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ObjectFile" uuid = "d8793406-e978-5875-9003-1fc021f44a92" authors = ["Elliot Saba "] -version = "0.3.3" +version = "0.3.4" [deps] Reexport = "189a3867-3050-52da-a836-e630ba90ab69" @@ -9,5 +9,6 @@ StructIO = "53d494c1-5632-5724-8f4c-31dff12d585f" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] -StructIO = "≥ 0.3" -julia = "≥ 1" +StructIO = "0.3" +Reexport = "0.2" +julia = "1.0" diff --git a/REQUIRE b/REQUIRE deleted file mode 100644 index 0b653ee..0000000 --- a/REQUIRE +++ /dev/null @@ -1,3 +0,0 @@ -julia 0.7.0-rc3 -StructIO 0.2 -Reexport \ No newline at end of file diff --git a/docs/Project.toml b/docs/Project.toml index dfa65cd..f2a273e 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -1,2 +1,5 @@ [deps] Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" + +[compat] +Documenter = "~0.24"