Skip to content

Commit ae03960

Browse files
committed
Update to version 1.0.2
1 parent b9db789 commit ae03960

File tree

14 files changed

+42
-23
lines changed

14 files changed

+42
-23
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ To get started, add the necessary packages to your `pubspec.yaml`:
4848
dependencies:
4949
flutter:
5050
sdk: flutter
51-
declarative_sqlite: ^1.0.1
52-
declarative_sqlite_flutter: ^1.0.1
51+
declarative_sqlite: ^1.0.2
52+
declarative_sqlite_flutter: ^1.0.2
5353

5454
dev_dependencies:
5555
build_runner: ^2.4.10
56-
declarative_sqlite_generator: ^1.0.1
56+
declarative_sqlite_generator: ^1.0.2
5757
```
5858
5959
For a detailed guide, please refer to our [**official documentation**](https://graknol.github.io/declarative_sqlite/).

declarative_sqlite/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.0.2
2+
3+
### Breaking Changes
4+
- Removed foreign key functionality from KeyBuilder and DbKey classes
5+
- Foreign key constraint handling removed from exception system
6+
- Architecture now favors application-level relationship management
7+
8+
### Documentation
9+
- Updated all documentation to remove foreign key references
10+
- Improved examples focusing on application-domain relationships
11+
112
## 1.0.1
213

314
### Features

declarative_sqlite/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ dependencies:
2222
flutter:
2323
sdk: flutter
2424
# Core library
25-
declarative_sqlite: ^1.0.1
25+
declarative_sqlite: ^1.0.2
2626
# Flutter integration package
27-
declarative_sqlite_flutter: ^1.0.1
27+
declarative_sqlite_flutter: ^1.0.2
2828
# Standard SQLite plugin for Flutter (Android/iOS)
2929
sqflite: ^2.3.3
3030
```

declarative_sqlite/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: declarative_sqlite
22
description: A dart package for declaratively creating SQLite tables and automatically migrating them.
3-
version: 1.0.1
3+
version: 1.0.2
44
repository: https://github.com/graknol/declarative_sqlite
55

66
environment:

declarative_sqlite_flutter/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.2
2+
3+
### Updates
4+
- Updated to use declarative_sqlite ^1.0.2
5+
- Aligned with foreign key removal changes
6+
17
## 1.0.1
28

39
### Updates

declarative_sqlite_flutter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Add both packages to your `pubspec.yaml`:
1717
dependencies:
1818
flutter:
1919
sdk: flutter
20-
declarative_sqlite: ^1.0.0
21-
declarative_sqlite_flutter: ^1.0.0
20+
declarative_sqlite: ^1.0.2
21+
declarative_sqlite_flutter: ^1.0.2
2222
```
2323
2424
### Example Usage

declarative_sqlite_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: declarative_sqlite_flutter
22
description: A Flutter package that provides seamless integration of declarative_sqlite with Flutter widgets, forms, and UI patterns.
3-
version: 1.0.1
3+
version: 1.0.2
44
repository: https://github.com/graknol/declarative_sqlite
55

66
environment:
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
declarative_sqlite: ^1.0.1
13+
declarative_sqlite: ^1.0.2
1414
sqflite_common: ^2.5.6
1515
sqflite: ^2.4.2
1616
path_provider: ^2.1.5

declarative_sqlite_generator/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.2
2+
3+
### Updates
4+
- Updated to use declarative_sqlite ^1.0.2
5+
- Aligned with foreign key removal changes
6+
17
## 1.0.1
28

39
### Updates

declarative_sqlite_generator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Add the packages to your `pubspec.yaml`:
1515

1616
```yaml
1717
dependencies:
18-
declarative_sqlite: ^1.0.0
18+
declarative_sqlite: ^1.0.2
1919

2020
dev_dependencies:
2121
build_runner: ^2.4.0
22-
declarative_sqlite_generator: ^1.0.0
22+
declarative_sqlite_generator: ^1.0.2
2323
```
2424
2525
## Usage

declarative_sqlite_generator/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: declarative_sqlite_generator
22
description: A build generator that generates data classes for interacting with table rows and view rows from declarative_sqlite schemas.
3-
version: 1.0.1
3+
version: 1.0.2
44
repository: https://github.com/graknol/declarative_sqlite
55

66
environment:

0 commit comments

Comments
 (0)