Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix zarr exports #70

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading