Skip to content

Commit

Permalink
update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
reeshika-h committed May 9, 2024
1 parent f343df0 commit 1e89280
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## Version 3.15.0

### Date: 20-May-2024

- Fixes and enhancements

---

## Version 3.14.0

### Date: 13-May-2024
Expand Down
7 changes: 5 additions & 2 deletions contentstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android.buildFeatures.buildConfig true
mavenPublishing {
publishToMavenCentral(SonatypeHost.DEFAULT)
signAllPublications()
coordinates("com.contentstack.sdk", "android", "3.14.0")
coordinates("com.contentstack.sdk", "android", "3.15.0")

pom {
name = "contentstack-android"
Expand Down Expand Up @@ -146,6 +146,9 @@ dependencies {
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})

// implementation 'com.squareup.okio:okio:3.9.0'
implementation 'com.github.rjeschke:txtmark:0.12'
}
tasks.register('clearJar', Delete) { delete 'build/libs/contentstack.jar' }
tasks.register('unzip', Copy) {
Expand All @@ -160,4 +163,4 @@ tasks.register('createJar', Jar) {
include 'com/contentstack/'
//include 'META-INF/'
}
createJar.dependsOn(clearJar, unzip, build)
createJar.dependsOn(clearJar, unzip, build)
4 changes: 2 additions & 2 deletions contentstack/src/main/java/com/contentstack/sdk/Entry.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import android.util.ArrayMap;
import android.util.Log;

import com.contentstack.txtmark.Configuration;
import com.contentstack.txtmark.Processor;
import com.github.rjeschke.txtmark.Configuration;
import com.github.rjeschke.txtmark.Processor;

import org.json.JSONArray;
import org.json.JSONException;
Expand Down
4 changes: 2 additions & 2 deletions contentstack/src/main/java/com/contentstack/sdk/Group.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import android.text.TextUtils;

import com.contentstack.txtmark.Configuration;
import com.contentstack.txtmark.Processor;
import com.github.rjeschke.txtmark.Configuration;
import com.github.rjeschke.txtmark.Processor;

import org.json.JSONArray;
import org.json.JSONObject;
Expand Down

0 comments on commit 1e89280

Please sign in to comment.