Skip to content

Commit

Permalink
Release v0.5.2 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
natario1 authored Jul 12, 2020
1 parent e0230a2 commit e01888b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ but other targets like iOS can probably be added easily.

```kotlin
// Regular Android projects
implementation("com.otaliastudios.opengl:egloo-android:0.5.1")
implementation("com.otaliastudios.opengl:egloo-android:0.5.2")

// Kotlin Multiplatform projects: add egloo-multiplatform to your common source set.
implementation("com.otaliastudios.opengl:egloo-multiplatform:0.5.1")
implementation("com.otaliastudios.opengl:egloo-multiplatform:0.5.2")

// Kotlin Multiplatform projects: or use the granular dependencies:
implementation("com.otaliastudios.opengl:egloo-android:0.5.1") // Android AAR
implementation("com.otaliastudios.opengl:egloo-androidnativex86:0.5.1") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativex64:0.5.1") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativearm32:0.5.1") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativearm64:0.5.1") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-android:0.5.2") // Android AAR
implementation("com.otaliastudios.opengl:egloo-androidnativex86:0.5.2") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativex64:0.5.2") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativearm32:0.5.2") // Android Native KLib
implementation("com.otaliastudios.opengl:egloo-androidnativearm64:0.5.2") // Android Native KLib
```

## Features
Expand Down
7 changes: 7 additions & 0 deletions docs/_about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ New versions are released through GitHub, so the reference page is the [GitHub R
Starting from v0.3.1, you can [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program.
Companies can share a tiny part of their revenue and get private support hours in return. Thanks!

### v0.5.2

- Fix: fixed a bug with the Android/JVM implementation ([#23][23])

<https://github.com/natario1/Egloo/compare/v0.5.1...v0.5.2>

### v0.5.1

Native targets are now published to JCenter and can be added as dependencies from Kotlin Multiplatform
Expand Down Expand Up @@ -63,3 +69,4 @@ First versioned release.
[18]: https://github.com/natario1/Egloo/pull/18
[20]: https://github.com/natario1/Egloo/pull/20
[22]: https://github.com/natario1/Egloo/pull/22
[23]: https://github.com/natario1/Egloo/pull/23
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-3'
google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4'
github: [metadata] # TODO What's this?
github_repo: Egloo
github_version: 0.5.1
github_version: 0.5.2
github_branch: master
baseurl: '/Egloo' # Keep as an empty string if served up at the root
collections:
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ android {
defaultConfig {
setMinSdkVersion(property("minSdkVersion") as Int)
setTargetSdkVersion(property("targetSdkVersion") as Int)
versionName = "0.5.1"
versionName = "0.5.2"
}
buildTypes["release"].consumerProguardFile("proguard-rules.pro")
sourceSets["main"].java.srcDirs("src/androidJvmMain/kotlin")
Expand Down

0 comments on commit e01888b

Please sign in to comment.