Skip to content

Commit

Permalink
Update Project.toml (#38)
Browse files Browse the repository at this point in the history
* Update Project.toml

* Update TagBot.yml
  • Loading branch information
matthieugomez authored Nov 15, 2020
1 parent f6ec906 commit 12ae624
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment: # THIS BIT IS NEW
types:
- created
workflow_dispatch:
jobs:
TagBot:
# THIS 'if' LINE IS NEW
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
# NOTHING BELOW HAS CHANGED
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "InteractiveFixedEffectModels"
uuid = "80307280-efb2-5c5d-af8b-a9c15821677b"
version = "1.1.0"
version = "1.1.1"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand All @@ -19,11 +19,11 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Vcov = "ec2bfdc2-55df-4fc9-b9ae-4958c2cf2486"

[compat]
DataFrames = "0.21"
FillArrays = "0.7, 0.8, 0.9"
DataFrames = "0.21, 0.22"
FillArrays = "0.7, 0.8, 0.9, 0.10"
FixedEffectModels = "1.3"
FixedEffects = "2"
LeastSquaresOptim = "0.7"
LeastSquaresOptim = "0.7, 0.8"
Reexport = "0.2"
StatsBase = "0.33"
StatsModels = "0.6"
Expand Down

2 comments on commit 12ae624

@matthieugomez
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 register()

@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/24704

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 v1.1.1 -m "<description of version>" 12ae62490e8acbde8a9ef0095c16ab3a44ccc6e9
git push origin v1.1.1

Please sign in to comment.