Skip to content

Commit

Permalink
version bumped to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anidotnet committed May 2, 2024
1 parent c75a328 commit 87fb1cd
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 31 deletions.
8 changes: 4 additions & 4 deletions examples/nitrite_demo/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A simple Flutter project to demonstrate Nitrite database usage.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.3
version: 1.1.0

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -15,8 +15,8 @@ dependencies:
flutter_slidable: ^3.0.0
flutter_riverpod: ^2.3.6
riverpod_annotation: ^2.1.1
nitrite: ^1.0.3
nitrite_hive_adapter: ^1.0.3
nitrite: ^1.1.0
nitrite_hive_adapter: ^1.1.0
path_provider: ^2.0.15
uuid: ^4.2.0

Expand All @@ -28,7 +28,7 @@ dev_dependencies:
build_runner: ^2.4.6
custom_lint: any
riverpod_lint: any
nitrite_generator: ^1.0.3
nitrite_generator: ^1.1.0
icons_launcher: ^2.1.3

flutter:
Expand Down
5 changes: 4 additions & 1 deletion packages/nitrite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 1.0.4
## 1.1.0

- Enum is supported now for automatic `EntityConverter` generation.
- Issue fix for `getById()` method in `ObjectRepository` for embedded id.

## 1.0.3

Expand Down
7 changes: 3 additions & 4 deletions packages/nitrite/lib/src/store/memory/in_memory_meta.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// DO NOT EDIT THIS FILE EXCEPT TO ENTER INITIAL VERSION AND OTHER META INFO
/// THIS FILE IS AUTOMATICALLY OVER WRITTEN BY MetaUpdate
/// DO NOT EDIT THIS FILE EXCEPT TO ENTER INITIAL VERSION AND OTHER META INFO
/// THIS FILE IS AUTOMATICALLY OVER WRITTEN BY MetaUpdate
Map<String, String> meta = <String, String>{
"version":"1.0.3",
"version": "1.1.0",
};

4 changes: 2 additions & 2 deletions packages/nitrite/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nitrite
description: An embedded nosql document store for dart/flutter. It supports both in-memory and file based persistent store.
version: 1.0.3
version: 1.1.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

Expand All @@ -23,7 +23,7 @@ dev_dependencies:
sdk: flutter
flutter_lints: ^3.0.1
build_runner: ^2.3.3
nitrite_generator: ^1.0.3
nitrite_generator: ^1.1.0
mockito: ^5.2.0
test: ^1.24.6
faker: ^2.0.0
Expand Down
5 changes: 4 additions & 1 deletion packages/nitrite_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 1.0.4
## 1.1.0

- Enum is supported now for automatic `EntityConverter` generation.
- Updated Nitrite to 1.1.0.

## 1.0.3

Expand Down
4 changes: 2 additions & 2 deletions packages/nitrite_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nitrite_generator
description: Nitrite entity generator. Automatically generates Nitrite entities from Dart classes.
version: 1.0.3
version: 1.1.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

Expand All @@ -14,7 +14,7 @@ dependencies:
dart_style: ^2.3.4
source_gen: ^1.5.0
analyzer: ^6.2.0
nitrite: ^1.0.3
nitrite: ^1.1.0
collection: ^1.17.1

dev_dependencies:
Expand Down
4 changes: 3 additions & 1 deletion packages/nitrite_hive_adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 1.0.4
## 1.1.0

- Updated Nitrite to 1.1.0.

## 1.0.3

Expand Down
5 changes: 2 additions & 3 deletions packages/nitrite_hive_adapter/lib/src/store/hive_meta.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// DO NOT EDIT THIS FILE EXCEPT TO ENTER INITIAL VERSION AND OTHER META INFO
/// DO NOT EDIT THIS FILE EXCEPT TO ENTER INITIAL VERSION AND OTHER META INFO
/// THIS FILE IS AUTOMATICALLY OVER WRITTEN BY MetaUpdate
Map<String, String> meta = <String, String>{
"version":"2.2.3",
"version": "2.2.3",
};

6 changes: 3 additions & 3 deletions packages/nitrite_hive_adapter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nitrite_hive_adapter
description: A persistent storage module for Nitrite database based on Hive.
version: 1.0.3
version: 1.1.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
hive: ^2.2.3
path: ^1.8.3
nitrite: ^1.0.3
nitrite: ^1.1.0
path_provider: ^2.1.1
logging: ^1.0.2
meta: ^1.10.0
Expand All @@ -23,7 +23,7 @@ dev_dependencies:
flutter_lints: ^3.0.1
build_runner: ^2.4.7
hive_generator: ^2.0.1
nitrite_generator: ^1.0.3
nitrite_generator: ^1.1.0
test: any
encrypt: ^5.0.3
faker: ^2.0.0
Expand Down
4 changes: 3 additions & 1 deletion packages/nitrite_spatial/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 1.0.4
## 1.1.0

- Updated Nitrite to 1.1.0.

## 1.0.3

Expand Down
8 changes: 4 additions & 4 deletions packages/nitrite_spatial/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nitrite_spatial
description: Nitrite Spatial module provides support for spatial queries. The module uses JTS port of the dart package dart_jts for spatial operations.
version: 1.0.3
version: 1.1.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

Expand All @@ -9,7 +9,7 @@ environment:

dependencies:
dart_jts: ^0.3.0+1
nitrite: ^1.0.3
nitrite: ^1.1.0
hive: ^2.2.3

dev_dependencies:
Expand All @@ -19,8 +19,8 @@ dev_dependencies:
sdk: flutter
flutter_lints: ^3.0.1
build_runner: ^2.4.7
nitrite_hive_adapter: ^1.0.3
nitrite_generator: ^1.0.3
nitrite_hive_adapter: ^1.1.0
nitrite_generator: ^1.1.0
path: ^1.8.3
path_provider: ^2.1.1
logging: ^1.0.2
Expand Down
4 changes: 3 additions & 1 deletion packages/nitrite_support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 1.0.4
## 1.1.0

- Updated Nitrite to 1.1.0.

## 1.0.3

Expand Down
8 changes: 4 additions & 4 deletions packages/nitrite_support/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nitrite_support
description: Support library for Nitrite database to provide some additional features like encryption, import/export database etc.
version: 1.0.3
version: 1.1.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

Expand All @@ -9,7 +9,7 @@ environment:

dependencies:
path: ^1.8.0
nitrite: ^1.0.3
nitrite: ^1.1.0
compute: ^1.0.2
convert: ^3.1.1
encrypt: ^5.0.1
Expand All @@ -22,8 +22,8 @@ dev_dependencies:
flutter_lints: ^3.0.1
test: ^1.16.0
faker: ^2.0.0
nitrite_hive_adapter: ^1.0.3
nitrite_generator: ^1.0.3
nitrite_hive_adapter: ^1.1.0
nitrite_generator: ^1.1.0
collection: ^1.16.0
build_runner: ^2.3.3

Expand Down

0 comments on commit 87fb1cd

Please sign in to comment.