Skip to content

Commit 6c9db36

Browse files
Prepare release 2.1.0
1 parent 9be8041 commit 6c9db36

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

flutter_libs/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: objectbox_flutter_libs
22
description: Superfast NoSQL Flutter / Dart database. This package contains Flutter runtime libraries for ObjectBox.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 2.0.0
5+
version: 2.1.0
66

77
environment:
88
sdk: '>=2.14.0 <4.0.0'
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
1313
# You should still depend on objectbox directly in your Flutter application.
14-
objectbox: 2.0.0
14+
objectbox: 2.1.0
1515
path_provider: ^2.0.0
1616

1717
flutter:

generator/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ class Version {
44
///
55
/// This string is updated by the /tool/set-version.sh script
66
/// as part of the release process.
7-
static const String current = "2.0.0";
7+
static const String current = "2.1.0";
88
}

generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: objectbox_generator
22
description: ObjectBox Flutter / Dart database binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 2.0.0
5+
version: 2.1.0
66

77
environment:
88
sdk: '>=2.18.0 <4.0.0'
99

1010
dependencies:
11-
objectbox: 2.0.0
11+
objectbox: 2.1.0
1212
analyzer: ^5.2.0 # 5.1.0 has a bug where DartType.element has been removed.
1313
build: ^2.0.0
1414
collection: ^1.15.0

objectbox/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## latest
1+
## 2.1.0 (2023-06-13)
22

33
* **Support for integer and floating point lists**: store 8-bit, 16-bit, 32-bit and 64-bit integer
44
lists as well as 32-bit and 64-bit floating point lists (called "vectors" by ObjectBox).

objectbox/example/flutter/event_management_tutorial/event_manager/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414

15-
objectbox: ^2.0.0
15+
objectbox: ^2.1.0
1616
objectbox_flutter_libs: any
1717
intl: any
1818

objectbox/example/flutter/event_management_tutorial/many_to_many/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414

15-
objectbox: ^2.0.0
15+
objectbox: ^2.1.0
1616
objectbox_flutter_libs: any
1717
intl: any
1818

objectbox/example/flutter/objectbox_demo/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
objectbox: ^2.0.0
12+
objectbox: ^2.1.0
1313
objectbox_flutter_libs: any
1414
intl: any
1515
path_provider: ^2.0.10

objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
objectbox: ^2.0.0
12+
objectbox: ^2.1.0
1313
objectbox_flutter_libs: any
1414
intl: any
1515
path_provider: ^2.0.10 # 2.0.11+ requires Flutter 2.8.0

objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
objectbox: ^2.0.0
12+
objectbox: ^2.1.0
1313
objectbox_sync_flutter_libs: any # For Sync support use this instead of objectbox_flutter_libs.
1414
intl: any
1515
path_provider: ^2.0.10

objectbox/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter database for super-fast NoSQL ACID compliant object persist
33
homepage: https://objectbox.io
44
repository: https://github.com/objectbox/objectbox-dart
55
documentation: https://docs.objectbox.io
6-
version: 2.0.0
6+
version: 2.1.0
77

88
environment:
99
# minimum Dart SDK (also see generator and flutter_libs)

sync_flutter_libs/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: objectbox_sync_flutter_libs
22
description: Fast Flutter database for persisting Dart objects. This package contains Flutter runtime libraries for ObjectBox, including ObjectBox Sync.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 2.0.0
5+
version: 2.1.0
66

77
environment:
88
sdk: '>=2.14.0 <4.0.0'
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
1313
# You should still depend on objectbox directly in your Flutter application.
14-
objectbox: 2.0.0
14+
objectbox: 2.1.0
1515
path_provider: ^2.0.0
1616

1717
flutter:

0 commit comments

Comments
 (0)