Skip to content
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
2 changes: 2 additions & 0 deletions .clocignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fixtures/
target/
20 changes: 9 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
- "README.md"
- ".github/workflows/ci.yml"

env:
# We use environment variables to specify the Rust version and other settings once
RUST_TOOLCHAIN: 1.94.0
CARGO_TERM_COLOR: always

jobs:
check:
name: Lint & Test
Expand All @@ -19,20 +24,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: clippy

- name: Install rustfmt
run: rustup component add rustfmt

- name: Cache cargo registry and target
uses: Swatinem/rust-cache@v2
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: rustfmt, clippy

- name: Check formatting
run: cargo +nightly fmt -- --check
run: cargo fmt -- --check

- name: Run clippy
run: cargo clippy --all-targets -- -D warnings
Expand Down
39 changes: 35 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,41 @@
# datu Version Notes

## v0.3.1
## v0.3.2

### Highlights

- **Convert command** now uses the DataFrame API for streamlined file processing; internal `resolve_input_file_type` renamed to `resolve_file_type`.
- **Avro**: Added compatibility for Int16 fields in record batches.
- **Error handling**: Replaced `anyhow` with `eyre`.
- **REPL**: Refactored evaluation to use `exec_*` naming and improved test structure; feature files updated with REPL equivalents.
- **Docs**: README updates for JSON support and REPL usage.
- **CI**: Switched to `actions-rust-lang/setup-rust-toolchain@v1`, Rust 1.94.0, no nightly.

### Improvements

- **Convert**
- Implemented DataFrame API support for file processing in the convert command.

- **Avro pipeline**
- Int16 fields in record batches are now handled correctly when writing Avro.

Compare range: `0.3.0...0.3.1`
- **REPL**
- Evaluation methods refactored to `exec_*` naming convention.
- Test structure and REPL feature scenarios updated.

- **Project**
- Added `.clocignore`.
- Dependency and version updates in Cargo files.
- CI workflow and toolchain adjustments.

### Changelog Stats

- 16 commits
- 28 files changed
- 754 insertions
- 610 deletions

## v0.3.1

### Highlights

Expand Down Expand Up @@ -42,8 +75,6 @@ Compare range: `0.3.0...0.3.1`

## v0.3.0

Compare range: `0.2.4...0.3.0`

### Highlights

- Added an interactive REPL mode: running `datu` without a subcommand now starts an interactive pipeline shell.
Expand Down
Loading
Loading