Skip to content

Commit

Permalink
add CompatHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello authored and carlobaldassi committed Mar 27, 2021
1 parent f40c473 commit 5883245
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 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()'
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["monte carlo", "spin glass", "ising spin models"]
license = "MIT"
desc = "Reduced-rejection-rate MonteCarlo and more."
author = ["Carlo Baldassi <carlobaldassi@gmail.com>"]
version = "2.1.0"
version = "2.2.0"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand All @@ -16,8 +16,8 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"

[compat]
DataStructures = "0.18"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10"
ExtractMacro = "0.3, 1.0"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 1.0"
julia = "1"

[extras]
Expand Down

2 comments on commit 5883245

@carlobaldassi
Copy link
Owner

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/32956

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 v2.2.0 -m "<description of version>" 5883245abb58909e73f5f297b786d38f4753773c
git push origin v2.2.0

Please sign in to comment.