Skip to content

Commit

Permalink
bump patch version
Browse files Browse the repository at this point in the history
* tested with VoronoiFVM, Surrogates, GradientRobustMultiPhysics
  • Loading branch information
j-fu committed Mar 30, 2021
1 parent 5392618 commit b802504
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ExtendableSparse"
uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
authors = ["Juergen Fuhrmann <[email protected]>"]
version = "0.4.0"
version = "0.4.1"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
4 changes: 3 additions & 1 deletion src/sparsematrixlnk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,9 @@ function Base.:+(lnk::SparseMatrixLNK{Tv,Ti},csc::SparseMatrixCSC)::SparseMatrix


# jointly sort lnk and csc entries into new matrix data
# this could be replaced in a more transparent manner by joint sorting
# this could be replaced in a more transparent manner by joint sorting:
# make a joint array for csc and lnk col, sort them.
# Will this be faster?

colptr[j]=inz
jlnk=one(Ti) # counts the entries in col
Expand Down

2 comments on commit b802504

@j-fu
Copy link
Member Author

@j-fu j-fu commented on b802504 Mar 30, 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/33189

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.4.1 -m "<description of version>" b8025040a8c08b79e09d02956a5c806c32ad4bff
git push origin v0.4.1

Please sign in to comment.