Skip to content

Commit dbade5a

Browse files
committed
Fix compilation errors in Firestore issue #262
1 parent dac725e commit dbade5a

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FirebaseClient",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"keywords": "communication, REST, esp32, esp8266, arduino",
55
"description": "Async Firebase Client library for Arduino.",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=FirebaseClient
22

3-
version=2.1.4
3+
version=2.1.5
44

55
author=Mobizt
66

src/core/Core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#undef FIREBASE_CLIENT_VERSION
88
#endif
99

10-
#define FIREBASE_CLIENT_VERSION "2.1.4"
10+
#define FIREBASE_CLIENT_VERSION "2.1.5"
1111

1212
static void sys_idle()
1313
{

src/core/Utils/Base64.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <vector>
1414
#endif
1515
#include "./core/Updater/OTAUpdater.h"
16+
#include "./core/Updater/OTAUpdater.cpp"
1617
#include "./core/File/BlobWriter.h"
1718
#include "./core/Utils/Memory.h"
1819

src/firestore/Databases.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@
1616

1717
using namespace firebase_ns;
1818

19+
#if defined(ENABLE_FIRESTORE_QUERY)
1920
#include "./firestore/Query.h"
21+
#include "./firestore/Query.cpp"
22+
#endif
23+
2024
namespace Firestore
2125
{
2226
class Databases : public FirestoreBase

0 commit comments

Comments
 (0)