Skip to content

Commit f118387

Browse files
committed
build: change name & versions
1 parent dd338ce commit f118387

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# under the License.
1717

1818
[package]
19-
name = "datafusion-functions-extra"
20-
version = "0.3.0"
19+
name = "datafusion-extra-functions"
20+
version = "0.4.0"
2121
edition = "2024"
2222
description = "Extra Functions for DataFusion"
2323
readme = "README.md"
@@ -27,7 +27,7 @@ keywords = [
2727
"datafusion",
2828
"functions-extra",
2929
]
30-
repository = "https://github.com/datafusion-contrib/datafusion-functions-extra/"
30+
repository = "https://github.com/datafusion-contrib/datafusion-extra-functions/"
3131

3232
[dependencies]
3333
log = "0.4"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# datafusion-functions-extra
1+
# datafusion-extra-functions
22

3-
[![CI](https://github.com/datafusion-contrib/datafusion-functions-extra/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/datafusion-contrib/datafusion-functions-extra/actions/workflows/ci.yml?query=branch%3Amain)
3+
[![CI](https://github.com/datafusion-contrib/datafusion-extra-functions/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/datafusion-contrib/datafusion-extra-functions/actions/workflows/ci.yml?query=branch%3Amain)
44

5-
[![Crates.io](https://img.shields.io/crates/v/datafusion-functions-extra?color=green)](https://crates.io/crates/datafusion-functions-extra)
5+
[![Crates.io](https://img.shields.io/crates/v/datafusion-extra-functions?color=green)](https://crates.io/crates/datafusion-extra-functions)
66

77
**Note:** This is not an official Apache Software Foundation release.
88

@@ -11,7 +11,7 @@ This crate provides extra functions for DataFusion, specifically focusing on adv
1111
To use these functions, you'll just need to call:
1212

1313
```rust
14-
datafusion_functions_extra::register_all_extra_functions(&mut ctx)?;
14+
datafusion_extra_functions::register_all_extra_functions(&mut ctx)?;
1515
```
1616

1717
# Examples

benches/mode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use arrow::util::bench_util::{create_primitive_array, create_string_array};
1919
use criterion::{Criterion, criterion_group, criterion_main};
2020
use datafusion::{arrow, logical_expr::Accumulator};
21-
use datafusion_functions_extra::common::mode::{BytesModeAccumulator, PrimitiveModeAccumulator};
21+
use datafusion_extra_functions::common::mode::{BytesModeAccumulator, PrimitiveModeAccumulator};
2222
use std::{hint, slice, sync};
2323

2424
fn prepare_primitive_mode_accumulator() -> Box<dyn Accumulator> {

tests/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717

1818
use datafusion::{arrow, error, execution, sql};
19-
use datafusion_functions_extra::register_all_extra_functions;
19+
use datafusion_extra_functions::register_all_extra_functions;
2020
use log::debug;
2121

2222
pub struct TestExecution {

0 commit comments

Comments
 (0)