diff --git a/Cargo.lock b/Cargo.lock index daba8b3..c109009 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,7 +277,7 @@ dependencies = [ [[package]] name = "gribberish" -version = "0.21.0" +version = "0.21.1" dependencies = [ "bitflags 2.6.0", "bitvec", @@ -295,7 +295,7 @@ dependencies = [ [[package]] name = "gribberish-macros" -version = "0.21.0" +version = "0.21.1" dependencies = [ "gribberish-types", "quote", @@ -304,11 +304,11 @@ dependencies = [ [[package]] name = "gribberish-types" -version = "0.21.0" +version = "0.21.1" [[package]] name = "gribberishjs" -version = "0.21.0" +version = "0.21.1" dependencies = [ "chrono", "gribberish", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "gribberishpy" -version = "0.21.0" +version = "0.21.1" dependencies = [ "gribberish", "numpy", diff --git a/gribberish/Cargo.toml b/gribberish/Cargo.toml index 3f7c202..98a54bf 100644 --- a/gribberish/Cargo.toml +++ b/gribberish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gribberish" -version = "0.21.0" +version = "0.21.1" authors = ["Matthew Iannucci "] description = "Parse grib 2 files with Rust" edition = "2021" @@ -10,8 +10,8 @@ keywords = ["grib", "weather", "meteorology", "climate", "oceanography"] categories = ["science", "encoding", "compression"] [dependencies] -gribberish-types = { path = "../types", version = "0.21.0" } -gribberish-macros = { path = "../macros", version = "0.21.0" } +gribberish-types = { path = "../types", version = "0.21.1" } +gribberish-macros = { path = "../macros", version = "0.21.1" } chrono = "0.4" openjpeg-sys = { version = "1.0.3", optional = true } png = { version = "0.17.2", optional = true } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index ff2465f..7013cbf 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gribberish-macros" -version = "0.21.0" +version = "0.21.1" authors = ["Matthew Iannucci "] description = "Procedural macros for the gribberish crate" edition = "2021" @@ -10,7 +10,7 @@ repository = "https://github.com/mpiannucci/gribberish" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -gribberish-types = { path = "./../types", version = "0.21.0" } +gribberish-types = { path = "./../types", version = "0.21.1" } syn = { version = "1.0", features = ["full"] } quote = "1.0" diff --git a/node/Cargo.toml b/node/Cargo.toml index 2fa13a2..d4731c6 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "gribberishjs" -version = "0.21.0" +version = "0.21.1" [lib] crate-type = ["cdylib"] @@ -10,7 +10,7 @@ crate-type = ["cdylib"] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix napi = { version = "2.5.0", default-features = false, features = ["chrono_date"] } napi-derive = "2.5.0" -gribberish = { path = "../gribberish", version = "0.21.0" } +gribberish = { path = "../gribberish", version = "0.21.1" } chrono = "0.4" [build-dependencies] diff --git a/python/Cargo.toml b/python/Cargo.toml index ac53470..17a0f67 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gribberishpy" -version = "0.21.0" +version = "0.21.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,5 +10,5 @@ crate-type = ["cdylib"] [dependencies] pyo3 = "0.23.1" -gribberish = { path = "../gribberish", version = "0.21.0" } +gribberish = { path = "../gribberish", version = "0.21.1" } numpy = "0.23.0" diff --git a/python/gribberish/zarr/__init__.py b/python/gribberish/zarr/__init__.py index e69de29..0795389 100644 --- a/python/gribberish/zarr/__init__.py +++ b/python/gribberish/zarr/__init__.py @@ -0,0 +1 @@ +from .codec import * # noqa \ No newline at end of file diff --git a/types/Cargo.toml b/types/Cargo.toml index 2bd12fb..e6214a3 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gribberish-types" -version = "0.21.0" +version = "0.21.1" authors = ["Matthew Iannucci "] description = "Common types for the gribberish crate" edition = "2021"