Skip to content

Commit

Permalink
Bump version to v0.9.30
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Amos committed Oct 13, 2020
1 parent 000efc4 commit 67f798c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### October 13, 2020 - v0.9.30
- Update Core plugins to androidx / jetpack

### August 18, 2020 - v0.9.29
- Fixes CI publish script
- Updates AGP and gradle versions
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ Download via Maven:
<dependency>
<groupId>com.willowtreeapps.hyperion</groupId>
<artifactId>hyperion-core</artifactId>
<version>0.9.29</version>
<version>0.9.30</version>
</dependency>
```
or Gradle:
```groovy
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.30'
```

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:
```groovy
releaseImplementation 'com.willowtreeapps.hyperion:hyperion-core-no-op:0.9.29'
releaseImplementation 'com.willowtreeapps.hyperion:hyperion-core-no-op:0.9.30'
```

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

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

```groovy
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-attr:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-build-config:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-crash:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-disk:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-geiger-counter:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-measurement:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-phoenix:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-recorder:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-shared-preferences:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-timber:0.9.29'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-core:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-attr:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-build-config:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-crash:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-disk:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-geiger-counter:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-measurement:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-phoenix:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-recorder:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-shared-preferences:0.9.30'
debugImplementation 'com.willowtreeapps.hyperion:hyperion-timber:0.9.30'
```

## Adding Plugins
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project.ext.set("minSdkVersion", 15)
project.ext.set("targetSdkVersion", 28)

project.ext.set("libraryGroup", 'com.willowtreeapps.hyperion')
project.ext.set("libraryVersion", '0.9.29')
project.ext.set("libraryVersion", '0.9.30')

project.ext.set("versionAutoService", "1.0-rc4")
project.ext.set("versionDagger", "2.24")
Expand Down

0 comments on commit 67f798c

Please sign in to comment.