Skip to content

Commit

Permalink
filter-expr param typo (#119)
Browse files Browse the repository at this point in the history
* filter-expr param typo
  • Loading branch information
budgetpreneur authored Jan 10, 2022
1 parent 49bef3b commit 6305a9f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
21 changes: 13 additions & 8 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: c-core
schema: 1
version: "3.3.1"
version: "3.3.2"
scm: github.com/pubnub/c-core
changelog:
- date: 2022-01-10
version: v3.3.2
changes:
- type: bug
text: "Filter-expr query param typo."
- date: 2022-01-05
version: v3.3.1
changes:
Expand Down Expand Up @@ -583,7 +588,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -649,7 +654,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -715,7 +720,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -777,7 +782,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -838,7 +843,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -894,7 +899,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down Expand Up @@ -947,7 +952,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v3.3.1
location: https://github.com/pubnub/c-core/releases/tag/v3.3.2
requires:
-
name: "miniz"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v3.3.2
January 10 2022

#### Fixed
- Filter-expr query param typo.

## v3.3.1
January 05 2022

Expand Down
2 changes: 1 addition & 1 deletion core/pbcc_subscribe_v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ enum pubnub_res pbcc_subscribe_v2_prep(struct pbcc_context* p,
ADD_URL_AUTH_PARAM(p, qparam, auth);
#endif

if (filter_expr) { ADD_URL_PARAM(qparam, filter_expr, filter_expr); }
if (filter_expr) { ADD_URL_PARAM(qparam, filter-expr, filter_expr); }
if (heartbeat) { ADD_URL_PARAM_SIZET(qparam, heartbeat, (unsigned long)*heartbeat); }

#if PUBNUB_CRYPTO_API
Expand Down
2 changes: 1 addition & 1 deletion core/pubnub_version_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define INC_PUBNUB_VERSION_INTERNAL


#define PUBNUB_SDK_VERSION "3.3.1"
#define PUBNUB_SDK_VERSION "3.3.2"


#endif /* !defined INC_PUBNUB_VERSION_INTERNAL */

0 comments on commit 6305a9f

Please sign in to comment.