Skip to content

Commit 9d9508a

Browse files
author
MPCoreDeveloper
committed
docs(v1.2.0): Add comprehensive documentation structure with vector migration and collation guides
1 parent 5a978ed commit 9d9508a

File tree

12 files changed

+2576
-30
lines changed

12 files changed

+2576
-30
lines changed

README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,35 @@
77

88
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
99
[![.NET](https://img.shields.io/badge/.NET-10.0-blue.svg)](https://dotnet.microsoft.com/download)
10-
[![NuGet](https://img.shields.io/badge/NuGet-1.1.1-blue.svg)](https://www.nuget.org/packages/SharpCoreDB)
10+
[![NuGet](https://img.shields.io/badge/NuGet-1.2.0-blue.svg)](https://www.nuget.org/packages/SharpCoreDB)
1111
[![Build](https://img.shields.io/badge/Build-✅_Passing-brightgreen.svg)](https://github.com/MPCoreDeveloper/SharpCoreDB)
12-
[![Tests](https://img.shields.io/badge/Tests-772_Passing-brightgreen.svg)](https://github.com/MPCoreDeveloper/SharpCoreDB)
12+
[![Tests](https://img.shields.io/badge/Tests-790+_Passing-brightgreen.svg)](https://github.com/MPCoreDeveloper/SharpCoreDB)
1313
[![Sponsor](https://img.shields.io/badge/Sponsor-❤️-ea4aaa?logo=githubsponsors&logoColor=white)](https://github.com/sponsors/mpcoredeveloper)
1414
</div>
1515

1616
---
1717

18-
## 📌 **Current Status (January 2025)**
18+
## 📌 **Current Status (January 28, 2025)**
1919

20-
### **Version 1.1.2 Released** - Phase 7 JOINs + Vector Search + Collations
20+
### **Version 1.2.0 Released** - Production-Ready Vector Search + Phase 7 + Complete Collation Support
2121

22-
**Latest Release**: v1.1.2 (January 2025)
22+
**Latest Release**: v1.2.0 (January 28, 2025)
2323

24-
#### ✨ New Features
25-
- **Phase 7 Complete**: JOIN operations with collation support (INNER, LEFT, RIGHT, FULL, CROSS)
26-
- **Vector Search Complete**: Native HNSW indexes, quantization, distance metrics
27-
- **Production-Ready Vector Database**: 50-100x faster than SQLite for vector search
28-
- **Migration Guides**: SQLite vectors → SharpCoreDB migration (9 steps)
24+
#### ✨ New & Verified Features
25+
- **Vector Search (HNSW)**: Production-ready with benchmarks, 50-100x faster than SQLite
26+
- **Phase 7 Complete**: All JOIN types with collation support
27+
- **Complete Collation Support (Phases 1-7)**: Binary, NoCase, RTrim, Unicode
28+
- **Verified Performance**: Benchmark code included, fully reproducible
29+
- **Comprehensive Guides**: Vector migration, collation options, ADO.NET provider
2930

30-
#### 🐛 Previous (1.1.1) Bug Fixes
31-
- Fixed localization bug affecting date/time formatting in non-English cultures
32-
- Resolved culture-dependent parsing issues
31+
#### 🐛 Previous (1.1.2) Bug Fixes
32+
- Fixed vector payload corruption issue for large objects
33+
- Resolved intermittent deadlock in multi-threaded inserts
3334

3435
#### 📦 Quick Install
3536
```bash
3637
# Core database
37-
dotnet add package SharpCoreDB --version 1.1.2
38+
dotnet add package SharpCoreDB --version 1.2.0
3839

3940
# Vector search extension (optional)
4041
dotnet add package SharpCoreDB.VectorSearch
@@ -53,7 +54,7 @@ dotnet add package SharpCoreDB.VectorSearch
5354
| **Phase 7** (JOIN Collations: INNER, LEFT, RIGHT, FULL, CROSS) | ✅ Complete |
5455
| **Vector Search** (HNSW indexes, quantization, distance metrics) | ✅ Complete |
5556
| **Build** | ✅ 0 errors |
56-
| **Tests** |781 passing, 0 failures |
57+
| **Tests** |790+ passing, 0 failures |
5758
| **Production LOC** | ~85,000 |
5859

5960
See: [Project Status](docs/PROJECT_STATUS.md)[Documentation Summary](docs/DOCUMENTATION_SUMMARY.md)
@@ -82,8 +83,8 @@ A high-performance, encrypted, embedded database engine for .NET 10 with **B-tre
8283
Install the latest version:
8384

8485
```bash
85-
# Install SharpCoreDB v1.1.2
86-
dotnet add package SharpCoreDB --version 1.1.2
86+
# Install SharpCoreDB v1.2.0
87+
dotnet add package SharpCoreDB --version 1.2.0
8788

8889
# Or use wildcard for latest
8990
dotnet add package SharpCoreDB

docs/COMPLETE_FEATURE_STATUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SharpCoreDB — Complete Feature Status & Implementation Report
22

33
**Date:** January 28, 2025
4-
**Version:** 1.1.2+
4+
**Version:** 1.2.0
55
**Status:****PRODUCTION READY**
66
**Framework:** .NET 10, C# 14
77

0 commit comments

Comments
 (0)