Skip to content

Commit

Permalink
build: Rename prql-compiler-macros to prqlc-macros (#4565)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
max-sixty and pre-commit-ci[bot] authored Jun 13, 2024
1 parent 1e0848e commit bb06617
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@

**Internal changes**:

- Renamed `prql-compiler-macros` to `prqlc-macros` for consistency with other
crates (@max-sixty, #4565)

**New Contributors**:

## 0.12.2 — 2024-06-10
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
"prqlc/bindings/js",
"prqlc/bindings/prqlc-c",
"prqlc/bindings/prqlc-python",
"prqlc/prql-compiler-macros",
"prqlc/prqlc-macros",
"prqlc/prql-compiler",
"prqlc/prqlc-ast",
"prqlc/prqlc-parser",
Expand Down
2 changes: 1 addition & 1 deletion prqlc/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includes:

vars:
packages_core: -p prqlc-ast -p prqlc-parser -p prqlc
packages_addon: -p prql-compiler-macros -p compile-files
packages_addon: -p prqlc-macros -p compile-files
packages_bindings: -p prql -p prql-java -p prqlc-js -p prqlc-c -p prqlc-python

tasks:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
description = "Macros for PRQL compilation at build time"
name = "prql-compiler-macros"
name = "prqlc-macros"

edition.workspace = true
license.workspace = true
Expand All @@ -14,7 +14,7 @@ proc_macro = true
test = false

[dependencies]
prqlc = {path = "../prqlc", default-features = false, version = "0.12.3" }
prqlc = {path = "../prqlc", default-features = false, version = "0.12.3"}
syn = "2.0.66"

[package.metadata.release]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion prqlc/prqlc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
//!
//! - Compile PRQL queries to SQL at build time.
//!
//! For inline strings, use the `prql-compiler-macros` crate; for example:
//! For inline strings, use the `prqlc-macros` crate; for example:
//! ```ignore
//! let sql: &str = prql_to_sql!("from albums | select {title, artist_id}");
//! ```
Expand Down

0 comments on commit bb06617

Please sign in to comment.