Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ You can deploy powerful similarity search capabilities right inside your app or

## License

Free Use in Open-Source Projects: You may use, copy, distribute, and prepare derivative works of the software — in source or object form, with or without modification — freely and without fee, provided the software is incorporated into or used by an open-source project licensed under an OSI-approved open-source license. Everything else is licensed under the [Elastic License 2.0](./LICENSE.md). You can use, copy, modify, and distribute it under the terms of the license for non-production use. For production or managed service use, please [contact SQLite Cloud, Inc](mailto:info@sqlitecloud.io) for a commercial license.
This project is licensed under the [Apache License 2.0](./LICENSE.md).

---

Expand Down
4 changes: 2 additions & 2 deletions packages/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ afterEvaluate {

licenses {
license {
name = 'Elastic License 2.0'
url = 'https://www.elastic.co/licensing/elastic-license'
name = 'Apache License 2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/hook/build.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2025 SQLite Cloud, Inc.
// Licensed under the Elastic License 2.0 (see LICENSE.md).
// Licensed under the Apache License 2.0 (see LICENSE.md).

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/lib/sqlite_vector.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2025 SQLite Cloud, Inc.
// Licensed under the Elastic License 2.0 (see LICENSE.md).
// Licensed under the Apache License 2.0 (see LICENSE.md).

library sqlite_vector;

Expand Down
11 changes: 6 additions & 5 deletions packages/flutter/lib/src/sqlite_vector.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2025 SQLite Cloud, Inc.
// Licensed under the Elastic License 2.0 (see LICENSE.md).
// Licensed under the Apache License 2.0 (see LICENSE.md).

import 'dart:ffi';

Expand Down Expand Up @@ -27,10 +27,11 @@ extension SqliteVectorExtension on Sqlite3 {
ensureExtensionLoaded(
SqliteExtension(
Native.addressOf<
NativeFunction<
Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)>>(
sqlite3_vector_init,
).cast(),
NativeFunction<
Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)
>
>(sqlite3_vector_init)
.cast(),
),
);
}
Expand Down
6 changes: 2 additions & 4 deletions packages/node/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @sqliteai/sqlite-vector

[![npm version](https://badge.fury.io/js/@sqliteai%2Fsqlite-vector.svg)](https://badge.fury.io/js/@sqliteai%2Fsqlite-vector)
[![License](https://img.shields.io/badge/license-Elastic%202.0-blue.svg)](LICENSE.md)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE.md)

> SQLite Vector extension packaged for Node.js

Expand Down Expand Up @@ -140,9 +140,7 @@ Error thrown when the SQLite Vector extension cannot be found for the current pl

## License

This project is licensed under the [Elastic License 2.0](LICENSE.md).

For production or managed service use, please [contact SQLite Cloud, Inc](mailto:info@sqlitecloud.io) for a commercial license.
This project is licensed under the [Apache License 2.0](LICENSE.md).

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion packages/node/generate-platform-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function generatePackageJson(platform, version) {
...platform.name.split('-'),
],
author: 'Gioele Cantoni (gioele@sqlitecloud.io)',
license: 'SEE LICENSE IN LICENSE.md',
license: 'Apache-2.0',
repository: {
type: 'git',
url: 'https://github.com/sqliteai/sqlite-vector.git',
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"sqlite-extension"
],
"author": "Gioele Cantoni (gioele@sqlitecloud.io)",
"license": "SEE LICENSE IN LICENSE.md",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sqliteai/sqlite-vector.git",
Expand Down
4 changes: 2 additions & 2 deletions packages/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0", "build", "wheel"]
requires = ["setuptools>=77.0.3", "build", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -10,7 +10,7 @@ authors = [
{ name = "SQLite AI Team" }
]
readme = "README.md"
license = "LicenseRef-Elastic-2.0-Modified-For-Open-Source-Use"
license = "Apache-2.0"
license-files = ["LICENSE.md"]
requires-python = ">=3"

Expand Down
Loading