diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c0bd50..61570de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,15 +18,9 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Update Rust Stable - run: rustup update stable - - name: Format run: cargo fmt --all -- --check - - name: Clippy - run: cargo clippy --all-targets --workspace --all-features -- -D warnings - build: runs-on: ubuntu-latest steps: @@ -34,24 +28,4 @@ jobs: - name: Update Rust Stable run: rustup update stable - name: Build - run: cargo build --all-features - - unit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Update Rust Stable - run: rustup update stable - - uses: actions/setup-python@v4 - with: - python-version: "3.11" - - name: Setup poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: "1.5.1" - - name: Install dependencies - run: | - cd testdata/python - poetry update --quiet - - name: Test - run: cargo test --all-targets --all-features \ No newline at end of file + run: cargo build --all-features \ No newline at end of file diff --git a/.github/workflows/ci_typos.yml b/.github/workflows/ci_typos.yml deleted file mode 100644 index dd05d39..0000000 --- a/.github/workflows/ci_typos.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Typos Check - -on: - push: - branches: - - main - pull_request: - branches: - - main - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} - cancel-in-progress: true - -env: - RUST_BACKTRACE: 1 - -jobs: - typos-check: - name: typos check - runs-on: ubuntu-latest - timeout-minutes: 10 - env: - FORCE_COLOR: 1 - steps: - - uses: actions/checkout@v4 - - run: curl -LsSf https://github.com/crate-ci/typos/releases/download/v1.14.8/typos-v1.14.8-x86_64-unknown-linux-musl.tar.gz | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin - - - name: do typos check with typos-cli - run: typos icelake diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index aa1b339..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Publish - -on: - push: - tags: - - '*' - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Update Rust Stable - run: rustup update stable - - name: Publish - run: cargo publish --all-features - env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index eef750d..44c1d1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.0.10" +version = "0.3.141592654" edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index 9a7d987..3d03cb2 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,12 @@ The Rust implementation of [Iceberg](https://iceberg.apache.org/). -## Status +--- -IceLake is currently in its early proof-of-concept stage and is undergoing heavy development. +All contributor and code of this repo has been moved to [apache/iceberg-rust](https://github.com/apache/iceberg-rust/). -For more information on our plan, please refer to the [IceLake v0.1 RoadMap](https://github.com/icelake-io/icelake/issues/1). +For any issue or PR, please go to [apache/iceberg-rust](https://github.com/apache/iceberg-rust/) instead. -## Acknowledgement +For more information, please refer to [ANNOUNCEMENT: Sunset of Icelake](https://github.com/icelake-io/icelake/issues/279). -Inspired a lot by: - -- [iceberg-rs](https://github.com/oliverdaff/iceberg-rs) -- [delta-rs](https://github.com/delta-io/delta-rs/) - -## License - -Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +Thank you for your support, let's meet at the iceberg community. diff --git a/icelake/README.md b/icelake/README.md new file mode 100644 index 0000000..3d03cb2 --- /dev/null +++ b/icelake/README.md @@ -0,0 +1,13 @@ +# IceLake + +The Rust implementation of [Iceberg](https://iceberg.apache.org/). + +--- + +All contributor and code of this repo has been moved to [apache/iceberg-rust](https://github.com/apache/iceberg-rust/). + +For any issue or PR, please go to [apache/iceberg-rust](https://github.com/apache/iceberg-rust/) instead. + +For more information, please refer to [ANNOUNCEMENT: Sunset of Icelake](https://github.com/icelake-io/icelake/issues/279). + +Thank you for your support, let's meet at the iceberg community.