Skip to content

Commit

Permalink
Prepare for release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SamYStudiO committed Nov 20, 2023
1 parent 6853e98 commit d9a91a6
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
0.7.0
0.7.1 (2023-11-20)
--------------
- Add Nmea throwIfContentInvalid parameter to allow more flexibility when parsing nmea by not throwing any error when content is mal formatted
- Fix parsing some gga
- Add observeBarometricAltitudeAndAccuracyUpdates to get barometric altitude along with accuracy state + allow observeBarometricAltitudeUpdates to specify minimum accuracy to filters events
- Bump libraries


0.7.0-SNAPSHOT
0.7.0 (2022-10-19)
--------------
- Add Nmea throwIfContentInvalid parameter to allow more flexibility when parsing nmea by not throwing any error when content is mal formatted
- Fix parsing some gga
- Add synchronized when adding nmea listener as it may lead to ConcurrentException
- Add FUSED_PROVIDER from Provider enum
- Fix parsing nmea with some locale not using dot as decimal separator + get rid of android Location class dependency (better for testing)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ You can easily add you own parser, just inherit from `net.samystudio.rxlocationm
Download
--------
```groovy
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager:0.7.0'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager:0.7.1'
```
If you need altitude helpers observables add this as well:
```groovy
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-altitude:0.7.0'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-altitude:0.7.1'
```
If you want to easily parse nmea messages you can use this standalone artifact (note this is already include if you added rxlocationmanager-altitude dependency):
```groovy
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-nmea:0.7.0'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-nmea:0.7.1'
```

Snapshots are available from [Sonatype's snapshots repository](https://oss.sonatype.org/content/repositories/snapshots/).
Expand All @@ -41,9 +41,9 @@ allprojects {
```
and change versions:
```groovy
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager:0.7.1-SNAPSHOT'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-altitude:0.7.1-SNAPSHOT'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-nmea:0.7.1-SNAPSHOT'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager:0.7.2-SNAPSHOT'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-altitude:0.7.2-SNAPSHOT'
implementation 'net.samystudio.rxlocationmanager:rxlocationmanager-nmea:0.7.2-SNAPSHOT'
```

Usage
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin.code.style=official
SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
GROUP=net.samystudio.rxlocationmanager
VERSION_NAME=0.7.1-SNAPSHOT
VERSION_NAME=0.7.1
POM_URL=https://github.com/SamYStudiO/RxLocationManager/
POM_SCM_URL=https://github.com/SamYStudiO/RxLocationManager/
POM_SCM_CONNECTION=scm:git:git://github.com/SamYStudiO/RxLocationManager.git
Expand Down
1 change: 1 addition & 0 deletions rx-location-manager-altitude/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.gradleMavenPublish)
}

project.findProperty("GROUP")?.let { group = it }
Expand Down
1 change: 1 addition & 0 deletions rx-location-manager-nmea/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.gradleMavenPublish)
}

project.findProperty("GROUP")?.let { group = it }
Expand Down
1 change: 1 addition & 0 deletions rx-location-manager/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.gradleMavenPublish)
}

project.findProperty("GROUP")?.let { group = it }
Expand Down

0 comments on commit d9a91a6

Please sign in to comment.