Skip to content

Commit 727c479

Browse files
dcherianclaude
andauthored
Set MSRV to 1.91.0; bump version to 2.0.1 (#2054)
Closes #2050 I changed the workflows too --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1a9cd3c commit 727c479

File tree

18 files changed

+32
-32
lines changed

18 files changed

+32
-32
lines changed

.github/workflows/dependency-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
CI: 1
2323
RUST_BACKTRACE: short
2424
RUSTUP_MAX_RETRIES: 10
25-
RUST_CHANNEL: '1.94.0'
25+
RUST_CHANNEL: '1.91.1'
2626
CARGO_DENY_VERSION: '0.19.0'
2727

2828
jobs:

.github/workflows/js-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- host: ubuntu-latest
5454
target: wasm32-wasip1-threads
5555
build: yarn build --target wasm32-wasip1-threads
56-
rust: '1.94.1'
56+
rust: '1.91.1'
5757
setup: |
5858
sudo apt-get update
5959
sudo apt-get install -y --no-install-recommends clang llvm wasi-libc libc++-dev

.github/workflows/publish-rust-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
RUSTFLAGS: "-D warnings"
99
RUSTUP_MAX_RETRIES: 10
1010
# update RUST_CHANNEL and CARGO_DENY in sync
11-
RUST_CHANNEL: '1.94.0'
11+
RUST_CHANNEL: '1.91.1'
1212
CARGO_DENY_VERSION: '0.19.0'
1313

1414
on:

.github/workflows/rust-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
RUST_BACKTRACE: short
2626
RUSTFLAGS: "-D warnings"
2727
RUSTUP_MAX_RETRIES: 10
28-
RUST_CHANNEL: '1.94.0'
28+
RUST_CHANNEL: '1.91.1'
2929
CARGO_DENY_VERSION: '0.19.0'
3030

3131
jobs:

.github/workflows/rust-upstream.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424
CARGO_NET_RETRY: 10
2525
RUST_BACKTRACE: short
2626
RUSTFLAGS: "-D warnings"
27-
RUST_CHANNEL: '1.94.0'
27+
RUST_CHANNEL: '1.91.1'
2828
CARGO_DENY_VERSION: '0.19.0'
2929

3030
jobs:

.github/workflows/windows-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
#pull-requests: read
3131
env:
3232
#CC: deny_c
33-
RUST_CHANNEL: '1.94.0'
33+
RUST_CHANNEL: '1.91.1'
3434
CARGO_DENY_VERSION: '0.19.0'
3535

3636

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ default-members = ["icechunk"]
1414
resolver = "2"
1515

1616
[workspace.package]
17-
rust-version = "1.94.0"
17+
rust-version = "1.91.1"
1818
edition = "2024"
1919
readme = "README.md"
2020

2121
[workspace.dependencies]
2222
# Internal crates
23-
icechunk = { path = "icechunk", version = "2.0.0" }
24-
icechunk-arrow-object-store = { path = "icechunk-arrow-object-store", version = "2.0.0", default-features = false }
25-
icechunk-format = { path = "icechunk-format", version = "2.0.0" }
26-
icechunk-macros = { path = "icechunk-macros", version = "2.0.0" }
27-
icechunk-s3 = { path = "icechunk-s3", version = "2.0.0" }
28-
icechunk-storage = { path = "icechunk-storage", version = "2.0.0" }
29-
icechunk-types = { path = "icechunk-types", version = "2.0.0" }
23+
icechunk = { path = "icechunk", version = "2.0.1" }
24+
icechunk-arrow-object-store = { path = "icechunk-arrow-object-store", version = "2.0.1", default-features = false }
25+
icechunk-format = { path = "icechunk-format", version = "2.0.1" }
26+
icechunk-macros = { path = "icechunk-macros", version = "2.0.1" }
27+
icechunk-s3 = { path = "icechunk-s3", version = "2.0.1" }
28+
icechunk-storage = { path = "icechunk-storage", version = "2.0.1" }
29+
icechunk-types = { path = "icechunk-types", version = "2.0.1" }
3030

3131
# External dependencies
3232
anyhow = "1.0.102"

icechunk-arrow-object-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk-arrow-object-store"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "Apache Arrow object_store storage backend for icechunk"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"

icechunk-format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk-format"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "Binary format types and serialization for the Icechunk storage engine"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"

0 commit comments

Comments
 (0)