Skip to content

Commit c348da8

Browse files
authored
release notes (#66)
* release notes * change
1 parent ea11b51 commit c348da8

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
**/.DS_Store
22
**/node_modules
33
bulk_data/**
4-
**/data
4+
**/data
5+
package-lock.json

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 22.06.0
2+
- Fixed a bug where remote config requests were rejected
3+
- Fixed a bug where empty storage object did cause some issues
4+
15
## 22.02.0
26
- !! Major breaking change !! Device ID provided during the init will be ignored if a device ID was provided previously
37
- Added a new init time flag which erases the previously stored device ID. This allows to set new device ID during init

lib/countly-bulk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var BulkUser = require("./countly-bulk-user");
5656
* });
5757
*/
5858
function CountlyBulk(conf) {
59-
var SDK_VERSION = "22.02.0";
59+
var SDK_VERSION = "22.06.0";
6060
var SDK_NAME = "javascript_native_nodejs_bulk";
6161

6262
var empty_queue_callback = null;

lib/countly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var Countly = {};
3333

3434
Countly.Bulk = Bulk;
3535
(function() {
36-
var SDK_VERSION = "22.02.0";
36+
var SDK_VERSION = "22.06.0";
3737
var SDK_NAME = "javascript_native_nodejs";
3838

3939
var inited = false;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-nodejs",
3-
"version": "22.02.0",
3+
"version": "22.06.0",
44
"description": "Countly NodeJS SDK",
55
"main": "lib/countly.js",
66
"directories": {

0 commit comments

Comments
 (0)