Skip to content

Commit

Permalink
Merge pull request #3 from kevelbreh/kw/misc
Browse files Browse the repository at this point in the history
There isnt a travis configuration - should add this to a todo.
  • Loading branch information
Kevin Woodland committed Aug 2, 2017
2 parents 33bf4a6 + c322c57 commit 814c503
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ allprojects {
}
}
dependencies {
compile 'com.github.kevelbreh:androidunits:0.1.0'
compile 'com.github.kevelbreh:androidunits:0.1.1'
}
```

Expand All @@ -55,7 +55,7 @@ Or Maven:
<dependency>
<groupId>com.github.kevelbreh</groupId>
<artifactId>androidunits</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
</dependency>

```
Expand Down
4 changes: 2 additions & 2 deletions androidunits/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down

0 comments on commit 814c503

Please sign in to comment.