Skip to content

Commit caaadac

Browse files
committed
feat: update version to 0.0.9 and enhance documentation with performance comparisons and examples
1 parent 1367f2f commit caaadac

File tree

8 files changed

+21
-7
lines changed

8 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.0.9
2+
3+
### Features
4+
5+
- Improved `deleteAll()` method to achieve O(1) time complexity for all dataset sizes
6+
- Updated documentation to reflect the performance improvements
7+
- Enhanced batch operations documentation with detailed examples
8+
9+
### Documentation
10+
11+
- Added performance comparison tables in README and documentation
12+
- Updated batch operations documentation with O(1) time complexity details
13+
- Improved CRUD documentation with performance notes
14+
115
## 0.0.8
216

317
### Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Add this to your package's `pubspec.yaml` file:
4444

4545
```yaml
4646
dependencies:
47-
quanta_db: ^0.0.6
47+
quanta_db: ^0.0.9
4848
```
4949
5050
You can install packages from the command line:

documentation/blog/quantadb-beta-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Adding QuantaDB to your project is straightforward:
5959

6060
```yaml
6161
dependencies:
62-
quanta_db: ^0.0.6
62+
quanta_db: ^0.0.9
6363
```
6464
6565
Basic usage example:

documentation/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To start using QuantaDB, add the dependency to your `pubspec.yaml` file:
88

99
```yaml
1010
dependencies:
11-
quanta_db: ^0.0.6 # Use the latest version
11+
quanta_db: ^0.0.9 # Use the latest version
1212
```
1313
1414
Then, run:

documentation/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To start using QuantaDB, add the dependency to your `pubspec.yaml` file:
5959

6060
```yaml
6161
dependencies:
62-
quanta_db: ^0.0.6 # Use the latest version
62+
quanta_db: ^0.0.9 # Use the latest version
6363
```
6464
6565
Then, run `dart pub get` or `flutter pub get`.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ packages:
334334
path: ".."
335335
relative: true
336336
source: path
337-
version: "0.0.8"
337+
version: "0.0.9"
338338
sky_engine:
339339
dependency: transitive
340340
description: flutter

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: quanta_db
22
description: "A high-performance pure Dart database implementation using LSM-Tree architecture."
3-
version: 0.0.8
3+
version: 0.0.9
44
homepage: https://champ96k.com
55
repository: https://github.com/champ96k/quanta_db
66
documentation: https://quantadb.netlify.app/

sample_examples/basic_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ environment:
77
sdk: ">=3.0.0 <4.0.0"
88

99
dependencies:
10-
quanta_db: ^0.0.4
10+
quanta_db: ^0.0.9

0 commit comments

Comments
 (0)