Skip to content

Commit

Permalink
chore: prepare for 2.0.0
Browse files Browse the repository at this point in the history
## [2.0.0](customerio/customerio-android@1.0.5...2.0.0) (2022-06-01)

### ⚠ BREAKING CHANGES

* get current FCM token on SDK startup
* register device attributes when set
* create background queue to make API synchronous

### Features

* add device and profile attribute setters ([789f09f](customerio@789f09f))
* add device_manufacturer device attribute ([6a60f39](customerio@6a60f39))
* added support for custom track url ([b61a64b](customerio@b61a64b))
* added support for device attributes ([customerio#71](customerio#71)) ([5fedf26](customerio@5fedf26))
* create background queue to make API synchronous ([2524460](customerio@2524460))
* get current FCM token on SDK startup ([dda443d](customerio@dda443d))
* register device attributes when set ([0f5159e](customerio@0f5159e))
* set log level via SDK config ([81eea4e](customerio@81eea4e))
* support for custom device attributes and config ([customerio#77](customerio#77)) ([a7dbaba](customerio@a7dbaba))

### Bug Fixes

* added java compatibility in public constructors and methods ([acdec46](customerio@acdec46))
* added support for big decimal ([customerio#56](customerio#56)) ([58c791b](customerio@58c791b))
* code cleanup ([c651ee6](customerio@c651ee6))
* delete device token when clear identify ([72f9753](customerio@72f9753))
* events are tracked to identified customer ([71634ed](customerio@71634ed))
* queue attempts to run all tasks on each run ([e180dea](customerio@e180dea))
* register device tokens http request ([b1c6872](customerio@b1c6872))
  • Loading branch information
semantic-release-bot committed Jun 1, 2022
1 parent 8860cd8 commit 79ebdec
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## [2.0.0](https://github.com/customerio/customerio-android/compare/1.0.5...2.0.0) (2022-06-01)


### ⚠ BREAKING CHANGES

* get current FCM token on SDK startup
* register device attributes when set
* create background queue to make API synchronous

### Features

* add device and profile attribute setters ([789f09f](https://github.com/customerio/customerio-android/commit/789f09f0c58e21cb3200ad933a269c40e9f530dc))
* add device_manufacturer device attribute ([6a60f39](https://github.com/customerio/customerio-android/commit/6a60f3900c08e9e2bccc2fc76986dc4b66123c95))
* added support for custom track url ([b61a64b](https://github.com/customerio/customerio-android/commit/b61a64b1f17c6b7d98ec1a743ffd07bef6819a4f))
* added support for device attributes ([#71](https://github.com/customerio/customerio-android/issues/71)) ([5fedf26](https://github.com/customerio/customerio-android/commit/5fedf26f251259601ab89c15b5cd691361c30e9d))
* create background queue to make API synchronous ([2524460](https://github.com/customerio/customerio-android/commit/2524460e84531150b61647acc0d5156cd9a4b3b9))
* get current FCM token on SDK startup ([dda443d](https://github.com/customerio/customerio-android/commit/dda443d5f5d1f92edafe7e2f19a3e948d4d5d8f5))
* register device attributes when set ([0f5159e](https://github.com/customerio/customerio-android/commit/0f5159ef5848b6bcd7641351bae90e2938ee5677))
* set log level via SDK config ([81eea4e](https://github.com/customerio/customerio-android/commit/81eea4e00c518499f0de8052ec31aa87dd0ee31c))
* support for custom device attributes and config ([#77](https://github.com/customerio/customerio-android/issues/77)) ([a7dbaba](https://github.com/customerio/customerio-android/commit/a7dbaba4d82e5e7378f590425ee8b911072036a8))


### Bug Fixes

* added java compatibility in public constructors and methods ([acdec46](https://github.com/customerio/customerio-android/commit/acdec46cece2e3dc44186bc7ff3c690bf48830dc))
* added support for big decimal ([#56](https://github.com/customerio/customerio-android/issues/56)) ([58c791b](https://github.com/customerio/customerio-android/commit/58c791b8a6c9df91506cf75064622a399ca9a8d0))
* code cleanup ([c651ee6](https://github.com/customerio/customerio-android/commit/c651ee62e1a7698e4efad0376aab5710655a2e2f))
* delete device token when clear identify ([72f9753](https://github.com/customerio/customerio-android/commit/72f9753a721ea9de80cb63edf036f1daaf66f9ca))
* events are tracked to identified customer ([71634ed](https://github.com/customerio/customerio-android/commit/71634edf4c36538d459f8140c0c05a426b4f21b2))
* queue attempts to run all tasks on each run ([e180dea](https://github.com/customerio/customerio-android/commit/e180dea2e4fd8c334b0fe24185c179f42d6e8027))
* register device tokens http request ([b1c6872](https://github.com/customerio/customerio-android/commit/b1c68724ccb5218bfcd3e8b25743e309ddf83b26))

## [2.0.0-beta.1](https://github.com/customerio/customerio-android/compare/1.0.5...2.0.0-beta.1) (2022-05-13)


Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/io/customer/sdk/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ package io.customer.sdk

internal object Version {

const val version: String = "2.0.0-beta.1"
const val version: String = "2.0.0"
}

0 comments on commit 79ebdec

Please sign in to comment.