Skip to content
This repository was archived by the owner on Mar 29, 2026. It is now read-only.

Commit ca25a96

Browse files
authored
Merge pull request #53 from sphildreth/sph-2026-03-17.04
Sph 2026 03 17.04
2 parents 842acb1 + 838a1d7 commit ca25a96

43 files changed

Lines changed: 3829 additions & 56 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coverage

52 KB
Binary file not shown.

bindings/dart/dart/lib/src/database.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Database {
104104
return open(':memory:', libraryPath: libraryPath, bindings: bindings);
105105
}
106106

107-
/// The engine version string (e.g. "1.7.0").
107+
/// The engine version string (e.g. "1.7.3").
108108
String get engineVersion {
109109
final ptr = _bindings.engineVersion();
110110
return ptr == nullptr ? 'unknown' : ptr.toDartString();

bindings/dart/dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: decentdb
22
description: Dart FFI bindings for DecentDB – an embedded ACID database engine.
3-
version: 1.7.0
3+
version: 1.7.3
44
repository: https://github.com/nicholasgasior/decentdb
55
homepage: https://github.com/nicholasgasior/decentdb/tree/main/bindings/dart
66

bindings/dart/examples/console/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
path: "../../dart"
88
relative: true
99
source: path
10-
version: "1.7.0"
10+
version: "1.7.3"
1111
ffi:
1212
dependency: transitive
1313
description:

bindings/dart/native/decentdb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extern "C" {
1414
// Returns the ABI version number. Callers should check at load time.
1515
int decentdb_abi_version(void);
1616

17-
// Returns the engine version string (e.g. "1.7.0"). Static; do NOT free.
17+
// Returns the engine version string (e.g. "1.7.3"). Static; do NOT free.
1818
const char* decentdb_engine_version(void);
1919

2020
// --------------------------------------------------------------------------

bindings/java/dbeaver-extension/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: DecentDB DBeaver Extension
44
Bundle-SymbolicName: org.jkiss.dbeaver.ext.decentdb;singleton:=true
5-
Bundle-Version: 1.7.2
5+
Bundle-Version: 1.7.3
66
Bundle-Activator: org.jkiss.dbeaver.ext.decentdb.DecentDBActivator
77
Bundle-Vendor: DecentDB Contributors
88
Require-Bundle: org.eclipse.core.runtime,
@@ -11,5 +11,5 @@ Require-Bundle: org.eclipse.core.runtime,
1111
org.jkiss.dbeaver.ext.generic
1212
Bundle-RequiredExecutionEnvironment: JavaSE-17
1313
Bundle-ClassPath: .,
14-
lib/decentdb-jdbc-1.7.2.jar
14+
lib/decentdb-jdbc-1.7.3.jar
1515
Export-Package: org.jkiss.dbeaver.ext.decentdb.model

bindings/java/dbeaver-extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = 'org.jkiss.dbeaver.ext'
6-
version = '1.7.2'
6+
version = '1.7.3'
77

88
java {
99
sourceCompatibility = JavaVersion.VERSION_21

bindings/java/driver/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = 'com.decentdb'
6-
version = '1.7.2'
6+
version = '1.7.3'
77

88
java {
99
sourceCompatibility = JavaVersion.VERSION_17

bindings/java/driver/src/main/java/com/decentdb/jdbc/DecentDBDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public final class DecentDBDriver implements Driver {
2828

2929
public static final String URL_PREFIX = "jdbc:decentdb:";
30-
public static final String DRIVER_VERSION = "1.7.2";
30+
public static final String DRIVER_VERSION = "1.7.3";
3131
public static final int DRIVER_MAJOR_VERSION = 1;
3232
public static final int DRIVER_MINOR_VERSION = 7;
3333

bindings/node/decentdb/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)