Skip to content

Commit

Permalink
Merge pull request #36 from CliMA/glw/bump-version
Browse files Browse the repository at this point in the history
Bump to 0.1.2
  • Loading branch information
glwagner authored Aug 28, 2024
2 parents 2dee0f4 + 871eb87 commit 35ea88b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ClimaSeaIce"
uuid = "6ba0ff68-24e6-4315-936c-2e99227c95a4"
authors = ["Climate Modeling Alliance and contributors"]
version = "0.1.1"
version = "0.1.2"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
14 changes: 14 additions & 0 deletions examples/simple_freezing_bucket.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Oceananigans
using Oceananigans.Units
using ClimaSeaIce

top_temperature = -10 # C
conductivity = 2 # W m² K⁻¹ .. ?

grid = RectilinearGrid(size=(), topology=(Flat, Flat, Flat))

top_heat_boundary_condition = PrescribedTemperature(top_temperature)
internal_heat_flux = ConductiveFlux(; conductivity)

model = SlabSeaIceModel(grid; top_heat_boundary_condition, internal_heat_flux)

2 comments on commit 35ea88b

@glwagner
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/114052

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.2 -m "<description of version>" 35ea88b4b880bd3a601f12459ca7badcb06c2570
git push origin v0.1.2

Please sign in to comment.