Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Bachmann authored and Niklas Bachmann committed Oct 18, 2018
1 parent e38f8ca commit 93be9a3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# PhotoEditor SDK - Changelog

## v6.0.8

### Fixed
* ArithmeticException in some cases while using dynamic frames.

## v6.0.7

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<p align="center">
<a href="http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels">
<img src="https://img.shields.io/badge/MIN_SDK-15-B8D529.svg?style=flat">
<img src="https://img.shields.io/badge/BUILD_SDK-27-92D230.svg?style=flat">
<img src="https://img.shields.io/badge/BUILD_SDK-28-92D230.svg?style=flat">
</a>
<a href="https://www.photoeditorsdk.com/documentation/android/getting-started">
<img src="https://img.shields.io/badge/platform-android-2DC25C.svg?style=flat">
</a>
<a href="https://artifactory.9elements.com/artifactory/imgly/ly/img/android/pesdk/">
<img src="https://img.shields.io/badge/VERSION-6.0.6-007ec6.svg?style=flat" alt="Maven">
<img src="https://img.shields.io/badge/VERSION-6.0.8-007ec6.svg?style=flat" alt="Maven">
</a>
<a href="http://twitter.com/PhotoEditorSDK">
<img src="https://img.shields.io/badge/twitter-@PhotoEditorSDK-8646E2.svg?style=flat" alt="Twitter">
Expand Down Expand Up @@ -126,7 +126,7 @@ buildscript {
maven { url "https://artifactory.9elements.com/artifactory/imgly" }
}
dependencies {
classpath 'ly.img.android.pesdk:PESDKPlugin:6.0.6'
classpath 'ly.img.android.pesdk:PESDKPlugin:6.0.8'
}
}
Expand All @@ -148,7 +148,7 @@ PESDKConfig {
licencePath "LICENSE" // Name of the Licence file in the asset folder
// Write here the newest SDK verion you will here https://github.com/imgly/pesdk-android-demo/releases
pesdkVersion "6.0.6"
pesdkVersion "6.0.8"
// If you are using another supportLibVersion ('com.android.support') please change this version here our update your own supportLibVersion
supportLibVersion "27.1.1"
Expand Down Expand Up @@ -196,11 +196,11 @@ PESDKConfig {
// Do your Android Configurations... ex.
android {
/* Set the compile SDK and the Build SDK min. at SDK 27 or grater.
/* Set the compile SDK and the Build SDK min. at SDK 28 or grater.
* We can't provide support for Bugs, that are the result of older SDK versions.
*/
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
/*
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pesdkConfig {

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
buildToolsVersion '28.0.3'

defaultConfig {
applicationId "com.photoeditorsdk.android.app"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext.kotlin_version = '1.2.61'
ext.pesdk_version = '6.0.7' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '6.0.8' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
jcenter()
Expand Down

0 comments on commit 93be9a3

Please sign in to comment.