Skip to content

Commit 38330e3

Browse files
committed
feat: add timestamp type.
1 parent 14275f7 commit 38330e3

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.pubignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ impls/nebula_dart_gdbc/**
33
impls/neurodb_dart_gdbc/**
44
impls/tugraph_dart_gdbc/**
55
impls/neo4j_dart_gdbc/**
6+
impls/pool/**

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.0.4
2+
- Feat: Add timestamp type.
3+
14
## 0.0.3
25
- Feat: Add ExecutionPlan to ResultSet.
36

impls/pool/dart_gdbc_pool/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.0.4
2+
- Feat: Add timestamp type.
3+
14
## 0.0.3
25
- Feat: ExecutionPlan support.
36

impls/pool/dart_gdbc_pool/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: dart_gdbc_pool
22
description: An implementation of connection pool for dart_gdbc. Mush be used with dart_gdbc.
3-
version: 0.0.3
3+
version: 0.0.4
44
repository: https://github.com/graph-cn/dart_gdbc/tree/main/impls/pool/dart_gdbc_pool
55

66
environment:
77
sdk: ^3.0.3
88

99
# Add regular dependencies here.
1010
dependencies:
11-
dart_gdbc: ^0.0.3
11+
dart_gdbc: ^0.0.4
1212
# path: ../../../
1313

1414
dev_dependencies:

lib/src/types.dart

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ enum GdbTypes {
4343
date,
4444
time,
4545
dateTime,
46+
timestamp,
4647
duration,
4748

4849
line,

pubspec.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
name: dart_gdbc
22
description: A standard interface specification for accessing graph databases based on Dart language
3-
version: 0.0.3
3+
version: 0.0.4
44
repository: https://github.com/graph-cn/dart_gdbc
55

66
environment:
77
sdk: '>=2.19.0 <4.0.0'
88

9-
# dependencies:
10-
# path: ^1.8.0
11-
129
dev_dependencies:
1310
lints: ^3.0.0
1411
test: ^1.21.0

test/dart_gdbc_test.dart

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,5 @@
33
// This source code is licensed under Apache 2.0 License.
44

55
// import 'package:dart_gdbc/dart_gdbc.dart';
6-
import 'package:test/test.dart';
76

8-
void main() {
9-
test('calculate', () {
10-
// expect(calculate(), 42);
11-
});
12-
}
7+
void main() {}

0 commit comments

Comments
 (0)