Skip to content

Commit

Permalink
Compat bump (#70)
Browse files Browse the repository at this point in the history
* Compat bump

* Compile on latest julia
  • Loading branch information
jlperla committed Jan 2, 2024
1 parent 69cbfd3 commit e618fbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
version:
- '1.6'
- '1.8'
- '1'
os:
- ubuntu-latest
arch:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Manifest.toml
docs/build/
docs/site/
.DS_Store
.vscode
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Expectations"
uuid = "2fe49d83-0758-5602-8f54-1f90ad0d522b"
version = "1.9.1"
version = "1.9.2"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand All @@ -10,7 +10,7 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"

[compat]
Distributions = "0.23, 0.24, 0.25"
FastGaussQuadrature = "0.4.3, 0.5"
FastGaussQuadrature = "0.4.3, 0.5, 1"
SpecialFunctions = "0.10, 1.1, 2"
LinearAlgebra = "<0.0.1, 1"
julia = "1.7, 1.8, 1.9"
Expand Down

2 comments on commit e618fbf

@jlperla
Copy link
Member Author

@jlperla jlperla commented on e618fbf Jan 2, 2024

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.9.2 -m "<description of version>" e618fbf8c00059fda36ac41c3134b1bb8e5eea81
git push origin v1.9.2

Please sign in to comment.