From 15f958c976a87df9088b269371228e6bbd8aec04 Mon Sep 17 00:00:00 2001 From: Kevin Woodland Date: Wed, 2 Aug 2017 10:30:01 +0200 Subject: [PATCH 1/3] Bumped compile sdk version from 25 to 26 --- androidunits/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/androidunits/build.gradle b/androidunits/build.gradle index da030a2..6b95d11 100644 --- a/androidunits/build.gradle +++ b/androidunits/build.gradle @@ -4,8 +4,8 @@ apply plugin: 'com.github.dcendents.android-maven' group='com.github.kevelbreh' android { - compileSdkVersion 25 - buildToolsVersion "25.0.2" + compileSdkVersion 26 + buildToolsVersion "25.0.3" defaultConfig { minSdkVersion 9 From aaf606d2c695d8ba0f0f713ec294c93e9cda4aab Mon Sep 17 00:00:00 2001 From: Kevin Woodland Date: Wed, 2 Aug 2017 10:30:24 +0200 Subject: [PATCH 2/3] Better naming of conversion tests --- ...sInstrumentedTest.java => ConversionInstrumentedTest.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/{ConversationsInstrumentedTest.java => ConversionInstrumentedTest.java} (92%) diff --git a/androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversationsInstrumentedTest.java b/androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversionInstrumentedTest.java similarity index 92% rename from androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversationsInstrumentedTest.java rename to androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversionInstrumentedTest.java index 9472171..79a0b58 100644 --- a/androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversationsInstrumentedTest.java +++ b/androidunits/src/androidTest/java/com/github/kevelbreh/androidunits/ConversionInstrumentedTest.java @@ -10,9 +10,9 @@ import static org.junit.Assert.assertEquals; @RunWith(AndroidJUnit4.class) -public class ConversationsInstrumentedTest { +public class ConversionInstrumentedTest { - @Test public void conversions() throws Exception { + @Test public void test_Conversions() throws Exception { DisplayMetrics metrics = Resources.getSystem().getDisplayMetrics(); for (float s = 0; s < 999; s++) { From c322c5712455e72a788587c1fe5ef026ac44f2f9 Mon Sep 17 00:00:00 2001 From: Kevin Woodland Date: Wed, 2 Aug 2017 10:30:45 +0200 Subject: [PATCH 3/3] Bumped version --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ee151..a166d95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 0.1.1 *(2017-08-02)* +---------------------------- + +Bumped compile SDK version to 26 + Version 0.1.0 *(2017-02-01)* ---------------------------- diff --git a/README.md b/README.md index 8f83b54..39a1f75 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ allprojects { } } dependencies { - compile 'com.github.kevelbreh:androidunits:0.1.0' + compile 'com.github.kevelbreh:androidunits:0.1.1' } ``` @@ -55,7 +55,7 @@ Or Maven: com.github.kevelbreh androidunits - 0.1.0 + 0.1.1 ```