Bump to 2.0.0-dev.2
This commit is contained in:
parent
df136add69
commit
b1c0ae7f72
3 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
# 2.0.0-dev.2
|
||||
* Renamed `ORM` to `Orm`.
|
||||
* `Orm` now requires a database type.
|
||||
|
||||
# 2.0.0-dev.1
|
||||
* Restored all old PostgreSQL-specific annotations. Rather than a smart runtime,
|
||||
|
|
|
@ -5,14 +5,14 @@ main() {
|
|||
|
||||
}
|
||||
|
||||
@orm
|
||||
@postgreSqlOrm
|
||||
abstract class Company extends Model {
|
||||
String get name;
|
||||
|
||||
bool get isFortune500;
|
||||
}
|
||||
|
||||
@orm
|
||||
@postgreSqlOrm
|
||||
abstract class _Employee extends Model {
|
||||
@belongsTo
|
||||
Company get company;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel_orm
|
||||
version: 2.0.0-dev.1
|
||||
version: 2.0.0-dev.2
|
||||
description: Runtime support for Angel's ORM.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/orm
|
||||
|
|
Loading…
Reference in a new issue