Skip to content

Commit 6d5df08

Browse files
authored
release: v0.7.0-beta.0 (#106)
1 parent 22c8831 commit 6d5df08

File tree

13 files changed

+30
-26
lines changed

13 files changed

+30
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55

66
## [Unreleased]
77

8+
## [0.7.0-beta.0] - 2025-04-23
9+
810
### Added
911

1012
- Source distribution to PyPI publish ([#92](https://github.com/stac-utils/rustac-py/pull/92))
@@ -195,7 +197,8 @@ Non-functional release to fix releasing from Github actions.
195197

196198
Initial release.
197199

198-
[Unreleased]: https://github.com/stac-utils/rustac-py/compare/v0.6.0...main
200+
[Unreleased]: https://github.com/stac-utils/rustac-py/compare/v0.7.0-beta.0...main
201+
[0.7.0-beta.0]: https://github.com/stac-utils/rustac-py/compare/v0.6.0...v0.7.0-beta.0
199202
[0.6.0]: https://github.com/stac-utils/rustac-py/compare/v0.5.9...v0.6.0
200203
[0.5.9]: https://github.com/stac-utils/rustac-py/compare/v0.5.8...v0.5.9
201204
[0.5.8]: https://github.com/stac-utils/rustac-py/compare/v0.5.7...v0.5.8

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustac-py"
3-
version = "0.6.0"
3+
version = "0.7.0-beta.0"
44
edition = "2024"
55
publish = false
66

scripts/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22

33
set -e
44

5+
cargo fmt
56
uv run ruff check --fix
67
uv run ruff format

scripts/lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
set -e
44

5+
cargo fmt --check
56
uv run ruff check
67
uv run ruff format --check
78
uv run mypy

src/arrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::{Error, Json, Result};
2-
use pyo3::{prelude::*, IntoPyObjectExt};
2+
use pyo3::{IntoPyObjectExt, prelude::*};
33
use pyo3_arrow::PyTable;
44
use serde_json::Value;
55
use stac::geoarrow::Table;

src/cli.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
use clap::Parser;
22
use pyo3::{
3-
pyfunction,
3+
PyResult, Python, pyfunction,
44
types::{PyAnyMethods, PyDict},
5-
PyResult, Python,
65
};
76
use rustac::Rustac;
87
use tracing::Level;

src/duckdb.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
use crate::{
2-
search::{PySortby, StringOrDict, StringOrList},
32
Result,
3+
search::{PySortby, StringOrDict, StringOrList},
44
};
55
use duckdb::Connection;
66
use pyo3::{
7+
IntoPyObjectExt,
78
exceptions::PyException,
89
prelude::*,
910
types::{PyDict, PyList},
10-
IntoPyObjectExt,
1111
};
1212
use pyo3_arrow::PyTable;
1313
use stac_duckdb::Client;

src/error.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use pyo3::{
2-
create_exception,
2+
PyErr, create_exception,
33
exceptions::{PyException, PyIOError},
4-
PyErr,
54
};
65
use thiserror::Error;
76

src/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::{Error, Json};
2-
use pyo3::{pyfunction, types::PyAny, Bound, PyResult, Python};
2+
use pyo3::{Bound, PyResult, Python, pyfunction, types::PyAny};
33
use stac::{Format, Link, Links, SelfHref, Value};
44

55
#[pyfunction]

0 commit comments

Comments
 (0)