Skip to content

Commit

Permalink
Reform compat section, add CompatHelper (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti authored Aug 31, 2021
1 parent 5d20d47 commit 1958b86
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 8 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CompatHelper
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: "Install CompatHelper"
run: |
import Pkg
name = "CompatHelper"
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
version = "2"
Pkg.add(; name, uuid, version)
shell: julia --color=yes {0}
- name: "Run CompatHelper"
run: |
import CompatHelper
CompatHelper.main()
shell: julia --color=yes {0}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
# COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
18 changes: 10 additions & 8 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Interact"
uuid = "c601a237-2ae4-5e1e-952c-7a85b0c7eef1"
version = "0.10.3"
version = "0.10.4"

[deps]
CSSUtil = "70588ee8-6100-5070-97c1-3cb50ed05fe8"
Expand All @@ -14,14 +14,16 @@ WebIO = "0f1e0344-ec1d-5b48-a673-e5cf874b6c29"
Widgets = "cc8bc4a8-27d6-5769-a93b-9d913e69aa62"

[compat]
julia = "0.7, 1"
JSON = "≥ 0.7"
InteractBase = "≥ 0.10.1"
WebIO = "≥ 0.3.1"
CSSUtil = "0.1"
InteractBase = "0.10.1"
JSON = "0.18, 0.19, 0.20, 0.21"
Knockout = "0.1.3, 0.2"
Observables = "0.2.2, 0.3, 0.4"
OrderedCollections = "1"
Widgets = "≥ 0.5.0"
Reexport = "≥ 0.1.0"
Observables = "≥ 0.2.2"
Reexport = "0.2, 1"
WebIO = "0.3.1, 0.4, 0.6, 0.7, 0.8"
Widgets = "0.5, 0.6"
julia = "0.7, 1"

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

2 comments on commit 1958b86

@twavv
Copy link
Member

@twavv twavv commented on 1958b86 Sep 20, 2021

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

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.10.4 -m "<description of version>" 1958b8658ec1c99efcb5b1646d6990111b35e12e
git push origin v0.10.4

Please sign in to comment.