Skip to content

Commit

Permalink
Merge pull request #173 from CliMA/ne/changelog
Browse files Browse the repository at this point in the history
Minor release, add changelog
  • Loading branch information
charleskawczynski authored Feb 13, 2024
2 parents 2fe593f + 1e8fff4 commit 7cb2ec3
Show file tree
Hide file tree
Showing 2 changed files with 18 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 = "CLIMAParameters"
uuid = "6eacf6c3-8458-43b9-ae03-caf5306d3d53"
authors = ["Climate Modeling Alliance"]
version = "0.8.6"
version = "0.9.0"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ClimaParameters.jl Release Notes
========================

v0.9.0
-------
- Started changelog
- Allow NamedTuples to be used as name maps ([#158])
- Update default value for `alpha_rayleigh_uh` ([#160])
- Add parameters for water based deposition nucleation for kaolinite, feldspar, and ferrihydrate ([#161])
- Fix typos in deposition nucleation parameters ([#162])
- Add parameters for the P3 scheme ([#163])
- Add autotrophic respiration parameters ([#165])
- Remove default type for TOML parsing ([#166])
- Replace and add additional ARG2000 parameters ([#130])
- Add `T_init_min` for thermodynamics saturation adjustment, changes T_min to 1 Kelvin 🧊 ([#171])
- Fix typos and group some parameters together ([#168])
- Add Frostenberg et al (2023) parameters ([#174])

2 comments on commit 7cb2ec3

@charleskawczynski
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/100759

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

Please sign in to comment.