Skip to content

Commit

Permalink
Merge pull request #135 from rudderlabs/develop
Browse files Browse the repository at this point in the history
[Release] Version 1.6.1
  • Loading branch information
desusai7 authored Aug 2, 2022
2 parents b9aee38 + 1e67222 commit 613e80f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ All notable changes to this project will be documented in this file.
- New field `userId` is supported to make it more compliant under `context->traits` for `identify` and all successive calls. Old filed for developer identification i.e. `id` is still supported.

## Version - 1.6.0 - 2022-07-11
### Changed
- Removed Bluetooth permission from the Core SDK and from now the bluetooth status would be collected and sent as a part of the payload only if bluetooth permission is included in the SDK, so that from now bluetooth permission is not necessarily needed to make use of the SDK.

## Changed
- Removed Bluetooth permission from the Core SDK and from now the bluetooth status would be collected and sent as a part of the payload only if bluetooth permission is included in the SDK, so that from now bluetooth permission is not necessarily needed to make use of the SDK.
## Version - 1.6.1 - 2022-08-02
### Changed
- Removed the app_name from the string resources of the Core SDK.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ allprojects {

```groovy
implementation 'com.rudderstack.android.sdk:core:1.6.0'
implementation 'com.rudderstack.android.sdk:core:1.6.1'
```

## Initializing ```RudderClient```
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName '1.6.0'
versionName '1.6.1'
consumerProguardFiles 'proguard-consumer-rules.pro'
}

Expand Down Expand Up @@ -54,7 +54,7 @@ dependencies {

ext {
PUBLISH_GROUP_ID = 'com.rudderstack.android.sdk'
PUBLISH_VERSION = '1.6.0'
PUBLISH_VERSION = '1.6.1'
PUBLISH_ARTIFACT_ID = 'core'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ class Constants {
// whether we should record screen views automatically
static final boolean RECORD_SCREEN_VIEWS = false;
// current version of the library
static final String RUDDER_LIBRARY_VERSION = "1.6.0";
static final String RUDDER_LIBRARY_VERSION = "1.6.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ class RudderLibraryInfo {
@SerializedName("name")
private String name = BuildConfig.LIBRARY_PACKAGE_NAME;
@SerializedName("version")
private String version = "1.6.0";
private String version = "1.6.1";
}
3 changes: 0 additions & 3 deletions core/src/main/res/values/strings.xml

This file was deleted.

0 comments on commit 613e80f

Please sign in to comment.