Skip to content

Commit 26e986f

Browse files
authored
BUmp to 0.22.0 (#78)
1 parent f8198af commit 26e986f

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gribberish/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gribberish"
3-
version = "0.21.2"
3+
version = "0.22.0"
44
authors = ["Matthew Iannucci <[email protected]>"]
55
description = "Parse grib 2 files with Rust"
66
edition = "2021"
@@ -10,8 +10,8 @@ keywords = ["grib", "weather", "meteorology", "climate", "oceanography"]
1010
categories = ["science", "encoding", "compression"]
1111

1212
[dependencies]
13-
gribberish-types = { path = "../types", version = "0.21.2" }
14-
gribberish-macros = { path = "../macros", version = "0.21.2" }
13+
gribberish-types = { path = "../types", version = "0.22.0" }
14+
gribberish-macros = { path = "../macros", version = "0.22.0" }
1515
chrono = "0.4"
1616
openjpeg-sys = { version = "1.0.3", optional = true }
1717
png = { version = "0.17.2", optional = true }

macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gribberish-macros"
3-
version = "0.21.2"
3+
version = "0.22.0"
44
authors = ["Matthew Iannucci <[email protected]>"]
55
description = "Procedural macros for the gribberish crate"
66
edition = "2021"
@@ -10,7 +10,7 @@ repository = "https://github.com/mpiannucci/gribberish"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
gribberish-types = { path = "./../types", version = "0.21.2" }
13+
gribberish-types = { path = "./../types", version = "0.22.0" }
1414
syn = { version = "1.0", features = ["full"] }
1515
quote = "1.0"
1616

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "gribberishjs"
4-
version = "0.21.2"
4+
version = "0.22.0"
55

66
[lib]
77
crate-type = ["cdylib"]
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1111
napi = { version = "2.5.0", default-features = false, features = ["chrono_date"] }
1212
napi-derive = "2.5.0"
13-
gribberish = { path = "../gribberish", version = "0.21.2" }
13+
gribberish = { path = "../gribberish", version = "0.22.0" }
1414
chrono = "0.4"
1515

1616
[build-dependencies]

python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gribberishpy"
3-
version = "0.21.2"
3+
version = "0.22.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -10,5 +10,5 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
pyo3 = "0.23.1"
13-
gribberish = { path = "../gribberish", version = "0.21.2" }
13+
gribberish = { path = "../gribberish", version = "0.22.0" }
1414
numpy = "0.23.0"

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gribberish-types"
3-
version = "0.21.2"
3+
version = "0.22.0"
44
authors = ["Matthew Iannucci <[email protected]>"]
55
description = "Common types for the gribberish crate"
66
edition = "2021"

0 commit comments

Comments
 (0)