Skip to content

Commit

Permalink
Next version will be 2.3.0. Updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
growse committed Jan 26, 2021
1 parent bdaa432 commit 31d82fc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# Changelog

## Version 2.2.3
## Version 2.3.0

* Dependency updates

### New features

* Config can now be loaded by the app using an `owntracks:///` URI, either pointing at a remote config location or encoded inline in base64.

### Bug fixes

* Fix bug relating to geocoding handling where the displayed value was not correctly updated.
* Geocoder now only considers first 4dp of location lat/lng to prevent too many requests resulting from tiny location drift
* Background location permission no longer needed, so removed
* Fix for regression introduced in 2.2 where self-signed certificates supplied as the CA were doing more restrictive hostname checking (#896). Hostnames are no longer matched if the CA cert is the same as the MQTT leaf cert.

## Version 2.2.2

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions project/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ plugins {
}

val versionMajor = 2
val versionMinor = 2
val versionPatch = 3
val versionMinor = 3
val versionPatch = 0
//TODO need to increment this manually at the moment, as GPP is broken
val versionBuild = 0 // This value is managed by the gradle publisher plugin. Build numbers get incremented on publish
val googleMapsAPIKey = extra.get("google_maps_api_key")?.toString() ?: "PLACEHOLDER_API_KEY"
Expand Down

0 comments on commit 31d82fc

Please sign in to comment.