Skip to content

Commit 67f798c

Browse files
author
Sean Amos
committed
Bump version to v0.9.30
1 parent 000efc4 commit 67f798c

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### October 13, 2020 - v0.9.30
2+
- Update Core plugins to androidx / jetpack
3+
14
### August 18, 2020 - v0.9.29
25
- Fixes CI publish script
36
- Updates AGP and gradle versions

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ Download via Maven:
4242
<dependency>
4343
<groupId>com.willowtreeapps.hyperion</groupId>
4444
<artifactId>hyperion-core</artifactId>
45-
<version>0.9.29</version>
45+
<version>0.9.30</version>
4646
</dependency>
4747
```
4848
or Gradle:
4949
```groovy
50-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.29'
50+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.30'
5151
```
5252

5353
If you reference Hyperion from your code, you should also compile the no-op artifact for release variants. For most users, this will not be necessary:
5454
```groovy
55-
releaseImplementation 'com.willowtreeapps.hyperion:hyperion-core-no-op:0.9.29'
55+
releaseImplementation 'com.willowtreeapps.hyperion:hyperion-core-no-op:0.9.30'
5656
```
5757

5858
If you want to be on the bleeding-edge, you can try out the SNAPSHOT version.
@@ -62,7 +62,7 @@ repositories {
6262
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
6363
}
6464
dependencies {
65-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.29-SNAPSHOT'
65+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.30-SNAPSHOT'
6666
}
6767
```
6868

@@ -72,17 +72,17 @@ Usage
7272
Include the core library along with any number of plugins.
7373

7474
```groovy
75-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.29'
76-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-attr:0.9.29'
77-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-build-config:0.9.29'
78-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-crash:0.9.29'
79-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-disk:0.9.29'
80-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-geiger-counter:0.9.29'
81-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-measurement:0.9.29'
82-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-phoenix:0.9.29'
83-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-recorder:0.9.29'
84-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-shared-preferences:0.9.29'
85-
debugImplementation 'com.willowtreeapps.hyperion:hyperion-timber:0.9.29'
75+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.30'
76+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-attr:0.9.30'
77+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-build-config:0.9.30'
78+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-crash:0.9.30'
79+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-disk:0.9.30'
80+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-geiger-counter:0.9.30'
81+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-measurement:0.9.30'
82+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-phoenix:0.9.30'
83+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-recorder:0.9.30'
84+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-shared-preferences:0.9.30'
85+
debugImplementation 'com.willowtreeapps.hyperion:hyperion-timber:0.9.30'
8686
```
8787

8888
## Adding Plugins

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project.ext.set("minSdkVersion", 15)
44
project.ext.set("targetSdkVersion", 28)
55

66
project.ext.set("libraryGroup", 'com.willowtreeapps.hyperion')
7-
project.ext.set("libraryVersion", '0.9.29')
7+
project.ext.set("libraryVersion", '0.9.30')
88

99
project.ext.set("versionAutoService", "1.0-rc4")
1010
project.ext.set("versionDagger", "2.24")

0 commit comments

Comments
 (0)