Skip to content

Commit

Permalink
Add GenericLinearAlgebra.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Dec 15, 2020
1 parent 3287cee commit 4c9a066
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name = "QuadratureRules"
uuid = "a08977f5-a20d-4b99-b11f-f5ea535e0575"
authors = ["Michael Kraus"]
version = "0.1.0"
version = "0.1.1"

[deps]
FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838"
GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
SpecialPolynomials = "a25cea48-d430-424a-8ee7-0d3ad3742e9e"

[compat]
FastGaussQuadrature = "0.4"
Polynomials = "^1.1.13"
GenericLinearAlgebra = "0.2"
Polynomials = "1"
SpecialPolynomials = "0.1"
julia = "1"

Expand Down
1 change: 1 addition & 0 deletions src/QuadratureRules.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module QuadratureRules

import FastGaussQuadrature
import GenericLinearAlgebra
import Polynomials
import Polynomials: Polynomial
import SpecialPolynomials: ShiftedLegendre
Expand Down

2 comments on commit 4c9a066

@michakraus
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
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/26400

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.1.1 -m "<description of version>" 4c9a0669657d60e4422debaf64693f82833cc1eb
git push origin v0.1.1

Please sign in to comment.