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

Commit 8484fb6

Browse files
committed
Bump version to 1.7.5 and update changelog with fixes and enhancements
1 parent e40e88c commit 8484fb6

21 files changed

Lines changed: 31 additions & 25 deletions

File tree

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.4").
107+
/// The engine version string (e.g. "1.7.5").
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.4
3+
version: 1.7.5
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.4"
10+
version: "1.7.5"
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.4"). Static; do NOT free.
17+
// Returns the engine version string (e.g. "1.7.5"). 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.4
5+
Bundle-Version: 1.7.5
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.4.jar
14+
lib/decentdb-jdbc-1.7.5.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.4'
6+
version = '1.7.5'
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.4'
6+
version = '1.7.5'
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.4";
30+
public static final String DRIVER_VERSION = "1.7.5";
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.

bindings/node/decentdb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "decentdb-native",
3-
"version": "1.7.4",
3+
"version": "1.7.5",
44
"private": true,
55
"description": "DecentDB Node.js native addon (N-API) + thin JS wrapper",
66
"main": "index.js",

0 commit comments

Comments
 (0)