Skip to content

Commit 2cd00a4

Browse files
2 parents e5ce302 + 57a1423 commit 2cd00a4

23 files changed

+1048
-180
lines changed

.markdownlint.yaml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,27 @@
44
# Default state for all rules
55
default: true
66

7-
# MD013/line-length - Line length
7+
# MD013/line-length – increase allowed length and keep table exceptions
88
MD013:
9-
line_length: 120
10-
heading_line_length: 120
11-
code_block_line_length: 120
9+
line_length: 250 # allow longer lines (e.g., long tables or code snippets)
10+
heading_line_length: 250
11+
code_block_line_length: 250
1212
code_blocks: false
1313
tables: false
1414
headings: true
1515
strict: false
1616

17-
# MD033/no-inline-html - Inline HTML
17+
# MD033/no-inline-html – keep allowed HTML elements
1818
MD033:
1919
allowed_elements: [br, p, details, summary]
2020

21-
# MD041/first-line-heading - First line in file should be a top level heading
21+
# MD041/first-line-heading – disabled (first line may not be a toplevel heading)
2222
MD041: false
2323

24-
# MD046/code-block-style - Code block style
24+
# MD046/code-block-style – enforce fenced code blocks
2525
MD046:
2626
style: fenced
27+
28+
# **New**: Disable table column style warnings (MD060) which were causing many
29+
# alignment errors across README and docs tables.
30+
MD060: false

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# CrossVector - Changelog
22

3+
## [0.1.1] - 2025-11-23
4+
5+
- Bumped package version to **0.1.1**.
6+
- Added beta warning and production‑risk notice in README.
7+
- Switched timestamps to float Unix timestamps (`created_timestamp`, `updated_timestamp`).
8+
- Introduced `VECTOR_STORE_TEXT` configuration option.
9+
- Fixed integration tests for AstraDB, ChromaDB, Milvus, and PGVector (table name handling, dimension parameter, score field).
10+
- Updated documentation (README, quickstart, schema, configuration) to reflect new features and usage.
11+
- Adjusted `.markdownlint.yaml` to disable MD060 table‑column‑style warnings.
12+
- Cleaned up imports and resolved lint errors (ruff E402).
13+
314
## Recent Updates (2025-11-23)
415

516
### GitHub Organization Update

0 commit comments

Comments
 (0)