Skip to content

Commit

Permalink
Merge 83cd33a into 4e8d15b
Browse files Browse the repository at this point in the history
  • Loading branch information
blagoev committed Feb 23, 2022
2 parents 4e8d15b + 83cd33a commit a8d2fac
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ x.x.x Release notes (yyyy-MM-dd)
**This project is in the Alpha stage. All API's might change without warning and no guarantees are given about stability. Do not use it in production.**

### Enhancements
* Support change notifications on query results. ([208](https://github.com/realm/realm-dart/pull/208))
* Support change notifications on list collections. ([261](https://github.com/realm/realm-dart/pull/261))
* Support change notifications on realm objects. ([262](https://github.com/realm/realm-dart/pull/262))
* Support change notifications on query results. ([#208](https://github.com/realm/realm-dart/pull/208))
* Support change notifications on list collections. ([#261](https://github.com/realm/realm-dart/pull/261))
* Support change notifications on realm objects. ([#262](https://github.com/realm/realm-dart/pull/262))
* Added support checking if Realm lists and Realm objects are valid. ([#183](https://github.com/realm/realm-dart/pull/183))
* Support query on lists of realm objects. ([239](https://github.com/realm/realm-dart/pull/239))
* Support query on lists of realm objects. ([#239](https://github.com/realm/realm-dart/pull/239))
* Added support for opening Realm in read-only mode. ([#260](https://github.com/realm/realm-dart/pull/260))
* Primary key fields no longer required to be `final` in data model classes ([#240](https://github.com/realm/realm-dart/pull/240))
* List fields no longer required to be `final` in data model classes. ([#253](https://github.com/realm/realm-dart/pull/253))

### Compatibility
* Dart ^2.15 on Windows, MacOS and Linux
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.19)

if(APPLE)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "Minimum OS X deployment version")
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ The Realm Flutter package name is `realm`

* Flutter ^2.8.0
* For Flutter Desktop environment setup check the guide [here](https://docs.flutter.dev/desktop)
* Cocoapods v1.11 or newer is required
* Cocoapods v1.11 or newer
* CMake 3.19 or newer

## Usage

Expand Down
11 changes: 11 additions & 0 deletions flutter/realm_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
x.x.x Release notes (yyyy-MM-dd)
==============================================================

**This project is in the Alpha stage. All API's might change without warning and no guarantees are given about stability. Do not use it in production.**

### Fixes
* Bump Cmake requirement to 3.19. Fixes build failure on Flutter Windows when older version of CMake is used. ([#266](https://github.dev/realm/realm-dart/pull/266))

### Compatibility
* Dart ^2.15 on Windows, MacOS and Linux.

0.2.0+alpha Release notes (2022-01-31)
=============================================================

Expand Down
2 changes: 1 addition & 1 deletion flutter/realm_flutter/example/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14)
cmake_minimum_required(VERSION 3.19)
project(realm_example LANGUAGES CXX)

set(BINARY_NAME "realm_example")
Expand Down
2 changes: 1 addition & 1 deletion flutter/realm_flutter/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.19)
set(PROJECT_NAME "realm")
project(${PROJECT_NAME} LANGUAGES CXX)

Expand Down

0 comments on commit a8d2fac

Please sign in to comment.