Skip to content

Commit

Permalink
add missing isbflux
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Jun 16, 2021
1 parent 819cdc9 commit 5ee8a16
Show file tree
Hide file tree
Showing 2 changed files with 3 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 = "VoronoiFVM"
uuid = "82b139dc-5afc-11e9-35da-9b9bdfd336f3"
authors = ["Juergen Fuhrmann <[email protected]>"]
version = "0.11.6"
version = "0.11.7"

[deps]
DiffResults = "163ba53b-c6d8-5494-b064-1a9d43ac40c5"
Expand Down
3 changes: 2 additions & 1 deletion src/vfvm_physics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,9 @@ macro create_physics_wrappers(physics,node,bnode,edge)
global issource=($(esc(physics)).source!=nofunc)
global isreaction=($(esc(physics)).reaction!=nofunc)
global isbreaction=($(esc(physics)).breaction!=nofunc)
global isbsource=($(esc(physics)).source!=nofunc)
global isbstorage=($(esc(physics)).bstorage!=nofunc)
global isbsource=($(esc(physics)).bsource!=nofunc)
global isbflux=($(esc(physics)).bflux!=nofunc)

global fluxwrap=function(y, u)
y.=0
Expand Down

2 comments on commit 5ee8a16

@j-fu
Copy link
Member Author

@j-fu j-fu commented on 5ee8a16 Jun 17, 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/39023

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.11.7 -m "<description of version>" 5ee8a169014f2e9c40e59b5698785f717564cb7d
git push origin v0.11.7

Please sign in to comment.