Skip to content

Commit d1e2260

Browse files
CommanderStormautofix-ci[bot]nyurik
authored
chore(rust): release (#1494)
## πŸ€– New release * `mlt-core`: 0.12.3 -> 0.12.4 (βœ“ API compatible changes) * `mlt`: 0.1.22 -> 0.1.23 * `mlt-py`: 0.1.24 -> 0.1.25 * `mlt-ffi`: 0.1.11 -> 0.1.12 * `mlt-wasm`: 0.1.17 -> 0.1.18 <details><summary><i><b>Changelog</b></i></summary><p> ## `mlt-core` <blockquote> ## [0.12.4](rust-mlt-core-v0.12.3...rust-mlt-core-v0.12.4) - 2026-07-18 ### Fixed - *(rust)* gate trigram-based shared-dict merging on corpus size ([#1505](#1505)) - *(rust)* use Option::filter instead of manual and_then ([#1504](#1504)) ### Other - *(rust)* re-publish fast-mvt ([#1524](#1524)) - *(rust)* genericize some more fns ([#1519](#1519)) - *(rust)* simplify `decode_(i32|i64|u32|u64)` to `decode_ints::<T>` ([#1518](#1518)) - *(rust)* dedup some code with generics ([#1516](#1516)) - *(rust)* carve v1 wire-format seams to prep for v2 ([#1513](#1513)) - *(rust)* minor v1 cleanup v2 prep ([#1510](#1510)) - *(deps)* bump the all-cargo-version-updates group across 1 directory with 4 updates ([#1500](#1500)) </blockquote> ## `mlt` <blockquote> ## [0.1.23](rust-mlt-v0.1.22...rust-mlt-v0.1.23) - 2026-07-18 ### Fixed - *(rust)* preserve PMTiles geographic header ([#1503](#1503)) ### Other - *(rust)* update dependencies, use CARGO_BUILD_WARNINGS ([#1515](#1515)) - Add PMTiles compression support to the Rust MVT-to-MLT converter ([#1498](#1498)) </blockquote> ## `mlt-py` <blockquote> ## [0.1.25](python-mlt-v0.1.24...python-mlt-v0.1.25) - 2026-07-18 ### Other - update Cargo.toml dependencies </blockquote> ## `mlt-ffi` <blockquote> ## [0.1.12](rust-mlt-ffi-v0.1.11...rust-mlt-ffi-v0.1.12) - 2026-07-18 ### Other - updated the following local packages: mlt-core </blockquote> ## `mlt-wasm` <blockquote> ## [0.1.18](rust-mlt-wasm-v0.1.17...rust-mlt-wasm-v0.1.18) - 2026-07-18 ### Other - updated the following local packages: mlt-core </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Yuri Astrakhan <yuriastrakhan@gmail.com>
1 parent 066b68f commit d1e2260

15 files changed

Lines changed: 61 additions & 15 deletions

File tree

β€Žrust/Cargo.lockβ€Ž

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

β€Žrust/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ js-sys = "0.3"
5050
martin-tile-utils = "0.7"
5151
mbtiles = { version = "0.18", default-features = false, features = ["transcode"] }
5252
mimalloc = "0.1.52"
53-
mlt-core = { version = "0.12.3", path = "mlt-core" }
53+
mlt-core = { version = "0.12.4", path = "mlt-core" }
5454
moka = { version = "0.12", features = ["sync"] }
5555
num-traits = "0.2.19"
5656
num_enum = "0.7.6"

β€Žrust/mlt-core/CHANGELOG.mdβ€Ž

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.4](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-core-v0.12.3...rust-mlt-core-v0.12.4) - 2026-07-18
11+
12+
### Fixed
13+
14+
- *(rust)* gate trigram-based shared-dict merging on corpus size ([#1505](https://github.com/maplibre/maplibre-tile-spec/pull/1505))
15+
- *(rust)* use Option::filter instead of manual and_then ([#1504](https://github.com/maplibre/maplibre-tile-spec/pull/1504))
16+
17+
### Other
18+
19+
- *(rust)* re-publish fast-mvt ([#1524](https://github.com/maplibre/maplibre-tile-spec/pull/1524))
20+
- *(rust)* genericize some more fns ([#1519](https://github.com/maplibre/maplibre-tile-spec/pull/1519))
21+
- *(rust)* simplify `decode_(i32|i64|u32|u64)` to `decode_ints::<T>` ([#1518](https://github.com/maplibre/maplibre-tile-spec/pull/1518))
22+
- *(rust)* dedup some code with generics ([#1516](https://github.com/maplibre/maplibre-tile-spec/pull/1516))
23+
- *(rust)* carve v1 wire-format seams to prep for v2 ([#1513](https://github.com/maplibre/maplibre-tile-spec/pull/1513))
24+
- *(rust)* minor v1 cleanup v2 prep ([#1510](https://github.com/maplibre/maplibre-tile-spec/pull/1510))
25+
- *(deps)* bump the all-cargo-version-updates group across 1 directory with 4 updates ([#1500](https://github.com/maplibre/maplibre-tile-spec/pull/1500))
26+
1027
## [0.12.3](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-core-v0.12.2...rust-mlt-core-v0.12.3) - 2026-07-01
1128

1229
### Other

β€Žrust/mlt-core/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mlt-core"
33
description = "MapLibre Tile library code"
4-
version = "0.12.3"
4+
version = "0.12.4"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true

β€Žrust/mlt-ffi/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.12](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-ffi-v0.1.11...rust-mlt-ffi-v0.1.12) - 2026-07-18
11+
12+
### Other
13+
14+
- updated the following local packages: mlt-core
15+
1016
## [0.1.11](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-ffi-v0.1.10...rust-mlt-ffi-v0.1.11) - 2026-07-01
1117

1218
### Other

β€Žrust/mlt-ffi/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mlt-ffi"
33
description = "Diplomat FFI bindings for mlt-core"
4-
version = "0.1.11"
4+
version = "0.1.12"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true

β€Žrust/mlt-py/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.25](https://github.com/maplibre/maplibre-tile-spec/compare/python-mlt-v0.1.24...python-mlt-v0.1.25) - 2026-07-18
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
15+
1016
## [0.1.24](https://github.com/maplibre/maplibre-tile-spec/compare/python-mlt-v0.1.23...python-mlt-v0.1.24) - 2026-07-01
1117

1218
### Other

β€Žrust/mlt-py/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mlt-py"
33
description = "Python bindings for MapLibre Tile (MLT) format via PyO3"
4-
version = "0.1.24"
4+
version = "0.1.25"
55
readme = "README.md"
66
repository.workspace = true
77
edition.workspace = true

β€Žrust/mlt-py/pyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "maplibre-tiles"
7-
version = "0.1.24"
7+
version = "0.1.25"
88
description = "Python bindings for MapLibre Tile (MLT) format"
99
requires-python = ">=3.10"
1010
license = { text = "MIT OR Apache-2.0" }

β€Žrust/mlt-wasm/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.18](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-wasm-v0.1.17...rust-mlt-wasm-v0.1.18) - 2026-07-18
11+
12+
### Other
13+
14+
- updated the following local packages: mlt-core
15+
1016
## [0.1.17](https://github.com/maplibre/maplibre-tile-spec/compare/rust-mlt-wasm-v0.1.16...rust-mlt-wasm-v0.1.17) - 2026-07-01
1117

1218
### Other

0 commit comments

Comments
Β (0)