Skip to content

Commit

Permalink
Release 1.0.0 (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Mar 8, 2021
1 parent 296c783 commit 7cc7b70
Show file tree
Hide file tree
Showing 16 changed files with 40 additions and 47 deletions.
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

# 1.0.0-nullsafety.1
# 1.0.0

### Changes

* Migrate to stable Dart 2.12

# 1.0.0-nullsafety.0
* Use stable Dart 2.12.0

### 🚀 Features

* Make floor null safe
* Make floor null-safe

# 0.19.1

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired
It comes with automatic mapping between in-memory objects and database rows while still offering full control of the database with the use of SQL.
As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential.

- null-safe
- typesafe
- reactive
- lightweight
Expand All @@ -14,7 +15,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o
- no hidden costs
- iOS, Android, Linux, macOS, Windows

⚠️ The library is on its way to its first stable release and is open to contributions!
⚠️ The library is open to contributions!
Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions.

[![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor)
Expand All @@ -36,10 +37,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.0-nullsafety
floor: ^1.0.0

dev_dependencies:
floor_generator: ^1.0.0-nullsafety
floor_generator: ^1.0.0
build_runner: ^1.11.5
```
Expand Down
8 changes: 3 additions & 5 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

## 1.0.0-nullsafety.1
## 1.0.0

### Changes

* Migrate to stable Dart 2.12

## 1.0.0-nullsafety.0
* Use stable Dart 2.12.0

### 🚀 Features

* Make floor null safe
* Make floor null-safe

## 0.19.1

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.0-nullsafety
floor: ^1.0.0

dev_dependencies:
floor_generator: ^1.0.0-nullsafety
floor_generator: ^1.0.0
build_runner: ^1.11.5
```
Expand Down
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired
It comes with automatic mapping between in-memory objects and database rows while still offering full control of the database with the use of SQL.
As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential.

- null-safe
- typesafe
- reactive
- lightweight
Expand All @@ -13,7 +14,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o
- iOS, Android, Linux, macOS, Windows

!!! important
The library is on its way to its first stable release and is open to contributions!
The library is open to contributions!
Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions.

[![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor)
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,21 +196,21 @@ packages:
path: "../floor"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
floor_annotation:
dependency: transitive
description:
path: "../floor_annotation"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
floor_generator:
dependency: "direct dev"
description:
path: "../floor_generator"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: example
description: >
The typesafe, reactive and lightweight SQLite abstraction for your Flutter applications.
This is an example on how to use the library.
version: 1.0.0-nullsafety.1
version: 1.0.0
homepage: https://github.com/vitusortner/floor
author: vitusortner
publish_to: none
Expand Down
8 changes: 3 additions & 5 deletions floor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

# 1.0.0-nullsafety.1
# 1.0.0

### Changes

* Migrate to stable Dart 2.12

# 1.0.0-nullsafety.0
* Use stable Dart 2.12.0

### 🚀 Features

* Make floor null safe
* Make floor null-safe

# 0.19.1

Expand Down
7 changes: 4 additions & 3 deletions floor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired
It comes with automatic mapping between in-memory objects and database rows while still offering full control of the database with the use of SQL.
As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential.

- null-safe
- typesafe
- reactive
- lightweight
Expand All @@ -14,7 +15,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o
- no hidden costs
- iOS, Android, Linux, macOS, Windows

⚠️ The library is on its way to its first stable release and is open to contributions!
⚠️ The library is open to contributions!
Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions.

[![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor)
Expand All @@ -36,10 +37,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.0-nullsafety
floor: ^1.0.0

dev_dependencies:
floor_generator: ^1.0.0-nullsafety
floor_generator: ^1.0.0
build_runner: ^1.11.5
```
Expand Down
4 changes: 2 additions & 2 deletions floor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,14 @@ packages:
path: "../floor_annotation"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
floor_generator:
dependency: "direct dev"
description:
path: "../floor_generator"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion floor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: floor
description: >
The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications.
This library is the runtime dependency.
version: 1.0.0-nullsafety.1
version: 1.0.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <[email protected]>
publish_to: none
Expand Down
12 changes: 5 additions & 7 deletions floor_annotation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

# 1.0.0-nullsafety.1
# 1.0.0

### Changes

* Migrate to stable Dart 2.12

# 1.0.0-nullsafety.0
* Use stable Dart 2.12.0

### 🚀 Features

* Make floor null safe
* Make floor null-safe

# 0.12.0

Expand All @@ -30,8 +28,8 @@

# 0.8.0

**⚠️ You need to migrate the explicit usages of `OnConflictStrategy` and `ForeignKeyAction` from snake case to camel
case.**
**⚠️ You need to migrate the explicit usages of `OnConflictStrategy` and `ForeignKeyAction` from
snake case to camel case.**

* Apply camel case to constants

Expand Down
4 changes: 2 additions & 2 deletions floor_annotation/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: floor_annotation
description: >
The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications.
Don't use this package directly. Import the floor package instead.
version: 1.0.0-nullsafety.1
version: 1.0.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <[email protected]>

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
meta: ^1.3.0
meta: ^1.3.0
8 changes: 3 additions & 5 deletions floor_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

# 1.0.0-nullsafety.1
# 1.0.0

### Changes

* Migrate to stable Dart 2.12

# 1.0.0-nullsafety.0
* Use stable Dart 2.12.0

### 🚀 Features

* Make floor null safe
* Make floor null-safe

# 0.19.1

Expand Down
2 changes: 1 addition & 1 deletion floor_generator/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ packages:
path: "../floor_annotation"
relative: true
source: path
version: "1.0.0-nullsafety.1"
version: "1.0.0"
glob:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion floor_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: floor_generator
description: >
The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications.
This library is the dev dependency.
version: 1.0.0-nullsafety.1
version: 1.0.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <[email protected]>
publish_to: none
Expand Down

0 comments on commit 7cc7b70

Please sign in to comment.