Skip to content

Commit

Permalink
Export MB utils and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiBolibar committed Sep 14, 2023
1 parent b5f450e commit 645d1ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Muninn"
uuid = "4b816528-16ba-4e32-9a2e-3c1bc2049d3a"
authors = ["Jordi Bolibar <jordi.bolibar@gmail.com>"]
version = "0.2.2"
version = "0.2.3"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand All @@ -21,7 +21,7 @@ JLD2 = "0.4"
PyCall = "1"
Reexport = "1"
Revise = "3"
Sleipnir = "0.3.3"
Sleipnir = "0.3.4"
julia = "1.9"

[extras]
Expand Down
2 changes: 2 additions & 0 deletions src/models/mass_balance/mass_balance_utils.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

export compute_MB, MB_timestep!, MB_timestep

function compute_MB(mb_model::TImodel1, climate_2D_period::Climate2Dstep)
return ((mb_model.acc_factor .* climate_2D_period.snow) .- (mb_model.DDF .* climate_2D_period.PDD))
end
Expand Down

2 comments on commit 645d1ae

@JordiBolibar
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 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/91401

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.2.3 -m "<description of version>" 645d1ae3a99643be4355e2e8ae9479a157bbb39f
git push origin v0.2.3

Please sign in to comment.