Skip to content

Commit

Permalink
BandedMatrices v1 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty authored Oct 3, 2023
1 parent 7445ee6 commit 546c224
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LazyBandedMatrices"
uuid = "d7e5e226-e90b-4449-9968-0f923699bf6f"
authors = ["Sheehan Olver <solver@mac.com>"]
version = "0.9.2"
version = "0.9.3"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand All @@ -17,7 +17,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
ArrayLayouts = "1.2.1"
BandedMatrices = "0.17.3"
BandedMatrices = "0.17.3, 1"
BlockArrays = "0.16.38"
BlockBandedMatrices = "0.12"
FillArrays = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion test/test_banded.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using LazyBandedMatrices, BandedMatrices, LazyArrays, Test
using BandedMatrices: _BandedMatrix
using BandedMatrices: _BandedMatrix, isbanded
using LazyBandedMatrices: ApplyBandedLayout

struct PseudoBandedMatrix{T} <: AbstractMatrix{T}
Expand Down
2 changes: 1 addition & 1 deletion test/test_blockkron.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using LazyBandedMatrices, FillArrays, BandedMatrices, BlockBandedMatrices, BlockArrays, ArrayLayouts, LazyArrays, Test
import BlockBandedMatrices: isbandedblockbanded, BandedBlockBandedStyle, BandedLayout
import BlockBandedMatrices: isbandedblockbanded, isbanded, BandedBlockBandedStyle, BandedLayout
import LazyBandedMatrices: KronTravBandedBlockBandedLayout, BroadcastBandedLayout, BroadcastBandedBlockBandedLayout, arguments, FillLayout, OnesLayout, call, blockcolsupport, InvDiagTrav, invdiagtrav
import LazyArrays: resizedata!
import BandedMatrices: BandedColumns
Expand Down

2 comments on commit 546c224

@dlfivefifty
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/92693

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.9.3 -m "<description of version>" 546c224b380cd5cc8126ce5b78752060f0ed3382
git push origin v0.9.3

Please sign in to comment.