Skip to content

Commit

Permalink
Remove unnecessary dependency (Formatting.jl) (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones authored Feb 28, 2024
1 parent a4d91e1 commit 41dcc7c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@ uuid = "30363a11-5582-574a-97bb-aa9a979735b9"
keywords = ["NetCDF", "IO"]
license = "MIT"
desc = "NetCDF file reading and writing"
version = "0.11.7"
version = "0.11.8"

[deps]
DiskArrays = "3c3547ce-8d99-4f5e-a174-61eb10b00ae3"
Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"
NetCDF_jll = "7243133f-43d8-5620-bbf4-c2c921802cf3"

[compat]
DiskArrays = "0.3"
Formatting = "0.3.2, 0.4"
NetCDF_jll = "400.902.5"
julia = "1.6"

Expand Down
1 change: 0 additions & 1 deletion src/NetCDF.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module NetCDF

using NetCDF_jll
using Formatting
using Base.Cartesian
import DiskArrays: readblock!, writeblock!, AbstractDiskArray, eachchunk, GridChunks,
estimate_chunksize, haschunks, Chunked, Unchunked
Expand Down

2 comments on commit 41dcc7c

@visr
Copy link
Member

@visr visr commented on 41dcc7c Feb 28, 2024

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/101945

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.11.8 -m "<description of version>" 41dcc7c5e906895b55492cf529c8af48d77fd658
git push origin v0.11.8

Please sign in to comment.