Skip to content

Commit 50c799a

Browse files
committed
Initial public release v1.0.0
0 parents  commit 50c799a

115 files changed

Lines changed: 9003 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Install Rust
15+
uses: actions-rs/toolchain@v1
16+
with:
17+
profile: minimal
18+
toolchain: stable
19+
override: true
20+
- name: Format
21+
run: cargo fmt --all -- --check
22+
- name: Clippy
23+
run: cargo clippy --all-targets --all-features -- -D warnings
24+
- name: Test
25+
run: cargo test --all --all-targets

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug
4+
target
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk
8+
9+
# MSVC Windows builds of rustc generate these, which store debugging information
10+
*.pdb
11+
12+
# Generated by cargo mutants
13+
# Contains mutation testing data
14+
**/mutants.out*/
15+
16+
# RustRover
17+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
18+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
19+
# and can be added to the global gitignore or merged into this file. For a more nuclear
20+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
21+
#.idea/
22+
23+
24+
# Added by cargo
25+
26+
/target

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## Unreleased
4+
- Placeholder for upcoming changes.
5+
6+
## v1.0.0
7+
- First public release (project was previously developed privately).
8+
- ANSI and Dremio formatting with keyword casing and configurable style.
9+
- Dremio commands: branch/tag, pipes, table maintenance, COPY INTO, reflection/acceleration manage, RBAC/queue/tag basics.
10+
- CLI modes: pass-through, `--format`, `--check`, `--write`; recursive formatting with include/exclude globs.
11+
- Docs: README, PROJECT, NOTES, STYLE draft, CONTRIBUTING.

0 commit comments

Comments
 (0)