Skip to content

Commit

Permalink
Merge pull request #501 from CliMA/ne/release_notes
Browse files Browse the repository at this point in the history
Minor release `0.15.0`
  • Loading branch information
nefrathenrici committed Jun 17, 2024
2 parents 3dda848 + 77e7c9b commit ad584b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
RRTMGP.jl Release Notes
========================

v0.15.0
------
- Solver struct has been split to allow for independent RTE solver schemes for longwave and shortwave problems ([#492]((https://github.com/CliMA/RRTMGP.jl/pull/492)))
- Simplify arguments for solve_lw! and solve_sw!. ([#493]((https://github.com/CliMA/RRTMGP.jl/pull/493)))
- Update Artifacts to use lookup tables and reference data from ([#495]((https://github.com/CliMA/RRTMGP.jl/pull/495)))
- Move AngularDiscretization to `NoScatLWRTE` ([#496]((https://github.com/CliMA/RRTMGP.jl/pull/496)))
- Update longwave secants and weights ([#498]((https://github.com/CliMA/RRTMGP.jl/pull/498)))

v0.14.0
------

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 = "RRTMGP"
uuid = "a01a1ee8-cea4-48fc-987c-fc7878d79da1"
authors = ["Climate Modeling Alliance"]
version = "0.14.0"
version = "0.15.0"

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

2 comments on commit ad584b2

@nefrathenrici
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/109200

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

Please sign in to comment.