Skip to content

Commit

Permalink
Merge pull request #208 from CliMA/gb/remove_deps
Browse files Browse the repository at this point in the history
Remove dependencies
  • Loading branch information
Sbozzolo authored Sep 2, 2024
2 parents 996dc13 + 769f189 commit 64914a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ClimaParams.jl Release Notes
========================

v0.10.14
------
- Remove all dependencies ([#208](https://github.com/CliMA/ClimaParams.jl/pull/208))

v0.10.13
------
- Remove mol co2 to kg C factor AutotrophicResp, add kg C to mol CO2 factor Heterotrophic Resp ([#205](https://github.com/CliMA/ClimaParams.jl/pull/205))
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "ClimaParams"
uuid = "5c42b081-d73a-476f-9059-fd94b934656c"
authors = ["Climate Modeling Alliance"]
version = "0.10.13"
version = "0.10.14"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
DocStringExtensions = "0.8, 0.9"
julia = "1"
TOML = "1"
Test = "1"
1 change: 0 additions & 1 deletion src/ClimaParams.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module ClimaParams

using TOML
using DocStringExtensions

export AbstractTOMLDict
export ParamDict
Expand Down
3 changes: 2 additions & 1 deletion src/file_parsing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ Uses the name to search
# Fields
$(DocStringExtensions.FIELDS)
- `data`: dictionary representing a default/merged parameter TOML file
- `override_dict`: either a nothing, or a dictionary representing an override parameter TOML file
"""
struct ParamDict{FT} <: AbstractTOMLDict{FT}
"dictionary representing a default/merged parameter TOML file"
Expand Down

2 comments on commit 64914a0

@Sbozzolo
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/114327

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.10.14 -m "<description of version>" 64914a0ee44102559904bee26f0bde4a35218d4d
git push origin v0.10.14

Please sign in to comment.