Skip to content

Commit

Permalink
Merge pull request #25 from giordano/mg/bump-version
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat authored May 19, 2020
2 parents 28df015 + 9a6f3a0 commit 716aafd
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 7 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -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 }}
12 changes: 12 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -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 }}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
Expand Down
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name = "ObjectFile"
uuid = "d8793406-e978-5875-9003-1fc021f44a92"
authors = ["Elliot Saba <[email protected]>"]
version = "0.3.3"
version = "0.3.4"

[deps]
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
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"
3 changes: 0 additions & 3 deletions REQUIRE

This file was deleted.

3 changes: 3 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
Documenter = "~0.24"

2 comments on commit 716aafd

@staticfloat
Copy link
Collaborator 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/15007

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.3.4 -m "<description of version>" 716aafd8e25f98124966eee82b9c8e670ad98521
git push origin v0.3.4

Please sign in to comment.