Skip to content

Commit

Permalink
release notes (#66)
Browse files Browse the repository at this point in the history
* release notes

* change
  • Loading branch information
turtledreams authored Nov 22, 2022
1 parent ea11b51 commit c348da8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
**/.DS_Store
**/node_modules
bulk_data/**
**/data
**/data
package-lock.json
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 22.06.0
- Fixed a bug where remote config requests were rejected
- Fixed a bug where empty storage object did cause some issues

## 22.02.0
- !! Major breaking change !! Device ID provided during the init will be ignored if a device ID was provided previously
- Added a new init time flag which erases the previously stored device ID. This allows to set new device ID during init
Expand Down
2 changes: 1 addition & 1 deletion lib/countly-bulk.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var BulkUser = require("./countly-bulk-user");
* });
*/
function CountlyBulk(conf) {
var SDK_VERSION = "22.02.0";
var SDK_VERSION = "22.06.0";
var SDK_NAME = "javascript_native_nodejs_bulk";

var empty_queue_callback = null;
Expand Down
2 changes: 1 addition & 1 deletion lib/countly.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var Countly = {};

Countly.Bulk = Bulk;
(function() {
var SDK_VERSION = "22.02.0";
var SDK_VERSION = "22.06.0";
var SDK_NAME = "javascript_native_nodejs";

var inited = false;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "countly-sdk-nodejs",
"version": "22.02.0",
"version": "22.06.0",
"description": "Countly NodeJS SDK",
"main": "lib/countly.js",
"directories": {
Expand Down

0 comments on commit c348da8

Please sign in to comment.