Skip to content

Commit

Permalink
Merge pull request #3674 from CliMA/js/v0286
Browse files Browse the repository at this point in the history
tag v0.28.6
  • Loading branch information
juliasloan25 authored Mar 6, 2025
2 parents dd2f543 + 307257b commit b98b169
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .buildkite/Manifest-v1.11.toml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ version = "0.5.13"
deps = ["Adapt", "ArgParse", "Artifacts", "AtmosphericProfilesLibrary", "ClimaComms", "ClimaCore", "ClimaDiagnostics", "ClimaParams", "ClimaTimeSteppers", "ClimaUtilities", "CloudMicrophysics", "Dates", "DiffEqBase", "FastGaussQuadrature", "Insolation", "Interpolations", "LazyArtifacts", "LazyBroadcast", "LinearAlgebra", "Logging", "NCDatasets", "NVTX", "NullBroadcasts", "RRTMGP", "Random", "SciMLBase", "StaticArrays", "Statistics", "SurfaceFluxes", "Thermodynamics", "UnrolledUtilities", "YAML"]
path = ".."
uuid = "b2c96348-7fb7-4fe0-8da9-78d88439e717"
version = "0.28.5"
version = "0.28.6"

[[deps.ClimaComms]]
deps = ["Adapt", "Logging", "LoggingExtras"]
Expand Down
12 changes: 8 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ ClimaAtmos.jl Release Notes
main
-------


v0.28.6
-------

### Features

### Add a flag for disabling surface flux tendency
Surface flux tendency is not controlled by `vert_diff` or `edmfx_sgs_diffusive_flux` anymore.
Instead, it is controlled by the new flag `disable_surface_flux_tendency`. When it is set to
Instead, it is controlled by the new flag `disable_surface_flux_tendency`. When it is set to
true, no surface flux tendency is applied, no matter what `surface_setup` is.
This flag is set to false by default. PR [3670](https://github.com/CliMA/ClimaAtmos.jl/pull/3670).

Expand Down Expand Up @@ -39,7 +43,7 @@ scheme (not the Mass-Flux).

### Update default configuration to use deep-atmosphere eqns, fix diagnostic bug
PR [3422](https://github.com/CliMA/ClimaAtmos.jl/pull/3422)
Updates the `default_config` to set `deep_atmosphere=true`, and updates the
Updates the `default_config` to set `deep_atmosphere=true`, and updates the
`rv` relative vorticity diagnostic to store the curl of horizontal velocity.

### Allow different sizes of dust and sea salt for radiation
Expand All @@ -65,14 +69,14 @@ more established and better developed tools:
- instead of `up_deps`, use `PkgDevTools`.
See the [documentation](https://clima.github.io/ClimaAtmos.jl/dev/contributor_guide/#Formatting) for more information.

`ClimaAtmos` now only support equilibrium moisture + 0-moment microphysics and
`ClimaAtmos` now only support equilibrium moisture + 0-moment microphysics and
nonequilibrium + 1-moment microphysics (No precipitation is still supported too).
PR [3557](https://github.com/CliMA/ClimaAtmos.jl/pull/3557)

### File Logging

`ClimaAtmos` now supports logging to stdout and file simultaneously using
`ClimaComms.FileLogger`. To enable, set the configuration with `log_to_file = false`.
`ClimaComms.FileLogger`. To enable, set the configuration with `log_to_file = false`.
See [ClimaComms documentation](https://clima.github.io/ClimaComms.jl/dev/logging/)
for more background on logging.

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ClimaAtmos"
uuid = "b2c96348-7fb7-4fe0-8da9-78d88439e717"
authors = ["Climate Modeling Alliance"]
version = "0.28.5"
version = "0.28.6"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down

2 comments on commit b98b169

@juliasloan25
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/126459

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

Please sign in to comment.