Skip to content

Commit

Permalink
v2.0.40 landed
Browse files Browse the repository at this point in the history
  • Loading branch information
adamansky committed Feb 17, 2020
1 parent e19a9f6 commit f24fcef
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 10 deletions.
5 changes: 3 additions & 2 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
ejdb2 (2.0.40) UNRELEASED; urgency=medium
ejdb2 (2.0.40) testing; urgency=medium

* Added `jbl_object_get_i64`, `jbl_object_get_f64`,
`jbl_object_get_bool`, `jbl_object_get_str`
* Minor fixes in index selection rules
* Added `jbl_type_t jbl_object_get_type(JBL jbl, const char *key)` (jbl.h)
* Upgraded to iowow 1.3.37

-- Anton Adamansky <[email protected]> Thu, 23 Jan 2020 17:44:30 +0700
-- Anton Adamansky <[email protected]> Mon, 17 Feb 2020 23:38:24 +0700

ejdb2 (2.0.39) testing; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ release_tag() {
git add ./README.md

if ! git diff-index --quiet HEAD --; then
git commit -m"${TAG} landed"
git commit -a -m"${TAG} landed"
git push origin master
fi

Expand Down
4 changes: 4 additions & 0 deletions src/bindings/ejdb2_dart/Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
ejdb_dart (1.0.46)

* Upgraded to ejdb v2.0.40

ejdb_dart (1.0.45)

* Upgraded to ejdb v2.0.39
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/ejdb2_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ejdb2_dart
description: Embeddable JSON Database engine EJDB http://ejdb.org Dart binding
version: 1.0.45
version: 1.0.46
homepage: https://github.com/Softmotions/ejdb
issue_tracker: https://github.com/Softmotions/ejdb/issues?q=is%3Aissue+label%3ADart+
author: Adamansky Anton <[email protected]>
Expand Down
4 changes: 4 additions & 0 deletions src/bindings/ejdb2_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.14+1

* Upgraded to ejdb v2.0.40

## 1.0.13+1

* Upgraded to ejdb v2.0.39
Expand Down
39 changes: 38 additions & 1 deletion src/bindings/ejdb2_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ await db.close();
- iOS
- Android

## iOS note
## iOS notes

In order to build app with this binding you have
to add the following code into application `Podfile`:
Expand All @@ -52,6 +52,43 @@ pre_install do |installer|
end
```

## Android notes

For release builds you have setup proguard rules as follows:

`build.gradle`
```
buildTypes {
...
release {
...
minifyEnabled true
useProguard true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
```

`proguard-rules.pro`
```
# Flutter Wrapper
-keep class io.flutter.app.** { *; }
-keep class io.flutter.plugin.** { *; }
-keep class io.flutter.util.** { *; }
-keep class io.flutter.view.** { *; }
-keep class io.flutter.** { *; }
-keep class io.flutter.plugins.** { *; }
-keep class io.flutter.embedding.** { *; }
-keep class io.flutter.embedding.android.** { *; }
-keep class androidx.core.app.** { *; }
# Keep EJDB
-keep class com.softmotions.ejdb2.** { *; }
```

## How build it manually

```sh
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/ejdb2_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ejdb2_flutter
description: Embeddable JSON Database engine EJDB http://ejdb.org Flutter binding.
version: 1.0.13+1
version: 1.0.14+1
homepage: https://ejdb.org

environment:
Expand Down
4 changes: 4 additions & 0 deletions src/bindings/ejdb2_node/Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
ejdb_node (1.0.27)

* Upgraded to ejdb v2.0.40

ejdb_node (1.0.26)

* Upgraded to ejdb v2.0.39
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/ejdb2_node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ejdb2_node",
"version": "1.0.26",
"version": "1.0.27",
"repository": "https://github.com/Softmotions/ejdb.git",
"author": "Anton Adamansky <[email protected]>",
"description": "EJDB2 Node.js native binding",
Expand Down
8 changes: 6 additions & 2 deletions src/bindings/ejdb2_react_native/binding/Changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
ejdb_dart (1.0.13)
ejdb2_react_native (1.0.14)

* Upgraded to ejdb v2.0.40

ejdb2_react_native (1.0.13)

* Upgraded to ejdb v2.0.39

ejdb_dart (1.0.12)
ejdb2_react_native (1.0.12)

* Upgraded to ejdb v2.0.37
* Fixed wal related durability issue
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/ejdb2_react_native/binding/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ejdb2_react_native",
"version": "1.0.13",
"version": "1.0.14",
"repository": "https://github.com/Softmotions/ejdb.git",
"author": "Anton Adamansky <[email protected]>",
"description": "EJDB2 React Native binding",
Expand Down

0 comments on commit f24fcef

Please sign in to comment.