Skip to content

Commit 23b9e12

Browse files
committed
README.md: remove pre 1.0 migration notes
1 parent 890df34 commit 23b9e12

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,6 @@ Source code
121121
-----------
122122
Source code for ObjectBox's Swift binding can be found [in the Source folder](Source/README.md).
123123

124-
Migrating from pre 1.0 versions
125-
-------------------------------
126-
127-
If you've used the ObjectBox betas, there are a few changes we made for the 1.0 release to
128-
improve the experience before we freeze the API for release. The adjustments you'll have to make are:
129-
130-
1. `isEmpty()`, `count()`, `all()`, `sum()`, `min()`, `max()` etc. are now functions to make it clearer they may perform a database lookup and aren't just properties to read.
131-
2. To put a struct and update its ID, use `put(inout)` or `putAndReturnIDs()`. `putImmutable()` is gone.
132-
3. The old `Id<>` type has been renamed to `EntityId<>`. There is now a new `Id` type that does not use generics.
133-
4. Changes to standalone relations need to be saved explicitly using a call to `applyToDb()`.
134-
5. Most calls have been revised to now throw errors, so you'll have to add the requisite `try` statements.
135-
6. `ToMany` has been revised to no longer need the containing type as a second generic parameter, so change any `ToMany<A, B>` in your code to `ToMany<A>`.
136-
137124
Other languages/bindings
138125
------------------------
139126
ObjectBox is a multi platform database supporting [multiple languages](https://objectbox.io/dev-get-started/):
@@ -142,7 +129,7 @@ ObjectBox is a multi platform database supporting [multiple languages](https://o
142129
* [ObjectBox Go](https://github.com/objectbox/objectbox-go): great for data-driven tools and server applications.
143130
* [ObjectBox C](https://github.com/objectbox/objectbox-c): native speed with zero copy access to FlatBuffer objects;
144131
also enables porting ObjectBox to other languages.
145-
* [ObjectBox Dart](https://github.com/objectbox/objectbox-dart/): build cross-platform apps using Flutter (early version)
132+
* [ObjectBox Dart/Flutter](https://github.com/objectbox/objectbox-dart/): build cross-platform apps using Flutter (beta version)
146133

147134
License
148135
-------

0 commit comments

Comments
 (0)