Skip to content

Commit

Permalink
fix zarr exports (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci authored Dec 1, 2024
1 parent 441c2a4 commit 49eccc3
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions gribberish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gribberish"
version = "0.21.0"
version = "0.21.1"
authors = ["Matthew Iannucci <[email protected]>"]
description = "Parse grib 2 files with Rust"
edition = "2021"
Expand All @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gribberish-macros"
version = "0.21.0"
version = "0.21.1"
authors = ["Matthew Iannucci <[email protected]>"]
description = "Procedural macros for the gribberish crate"
edition = "2021"
Expand All @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "gribberishjs"
version = "0.21.0"
version = "0.21.1"

[lib]
crate-type = ["cdylib"]
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
1 change: 1 addition & 0 deletions python/gribberish/zarr/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .codec import * # noqa
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gribberish-types"
version = "0.21.0"
version = "0.21.1"
authors = ["Matthew Iannucci <[email protected]>"]
description = "Common types for the gribberish crate"
edition = "2021"
Expand Down

0 comments on commit 49eccc3

Please sign in to comment.