This is an automated email from the ASF dual-hosted git repository.
jerry-024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-vector-index.git
The following commit(s) were added to refs/heads/main by this push:
new 5400ab5 fix: include LICENSE and NOTICE in Rust crate (#84)
5400ab5 is described below
commit 5400ab57c4d1aa09a791e038ff315e261658fa01
Author: shyjsarah <[email protected]>
AuthorDate: Fri Aug 21 18:35:51 2026 +0800
fix: include LICENSE and NOTICE in Rust crate (#84)
Co-authored-by: shaoyijie <[email protected]>
---
core/LICENSE | 1 +
core/NOTICE | 1 +
tools/check_license_headers.py | 2 ++
3 files changed, 4 insertions(+)
diff --git a/core/LICENSE b/core/LICENSE
new file mode 120000
index 0000000..ea5b606
--- /dev/null
+++ b/core/LICENSE
@@ -0,0 +1 @@
+../LICENSE
\ No newline at end of file
diff --git a/core/NOTICE b/core/NOTICE
new file mode 120000
index 0000000..7e1b82f
--- /dev/null
+++ b/core/NOTICE
@@ -0,0 +1 @@
+../NOTICE
\ No newline at end of file
diff --git a/tools/check_license_headers.py b/tools/check_license_headers.py
index b22fdc4..6074145 100755
--- a/tools/check_license_headers.py
+++ b/tools/check_license_headers.py
@@ -39,6 +39,8 @@ EXEMPT_FILES = {
"LICENSE-binary",
"LICENSE-binary-ffi",
"NOTICE",
+ "core/LICENSE",
+ "core/NOTICE",
# Golden test data; adding comments changes the fixture format.
"core/tests/fixtures/ivf_flat_v1.hex",
"core/tests/fixtures/ivf_sq_v1.hex",