Skip to content

Commit 41e5c62

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2025-10-24) * feat!: Fallback for no network or Play Services ([#7](#7)) ([e820114](e820114)), closes [IONGLOCLocationOptions#useLocationManagerFallback](https://github.com/IONGLOCLocationOptions/issues/useLocationManagerFallback) ### Bug Fixes * fix subtitle in README.md ([afc0bb4](afc0bb4)) * fix subtitles in README.md ([148471a](148471a)) * fix subtitles in README.md ([d778351](d778351)) * fix typo in yml file ([765b75d](765b75d)) * fixing typo in README ([7b5fa41](7b5fa41)) * LICENSE file directory in publish-module.gradle file ([3340682](3340682)) * publish library under `io.ionic.libs` instead of `com.capacitorjs` ([1bf7cd8](1bf7cd8)) * Publishing Migration To Central Portal ([#6](#6)) ([60228ff](60228ff)) ### Features * add publish-android workflow to publish Android lib in Maven ([7d33cbe](7d33cbe)) * bring full implementation of library from outsystems-geolocation repo ([0b1362c](0b1362c)) * set workflow_dispatch to manual trigger, avoiding the GitHub action to run when pushing to a branch ([8a1b7be](8a1b7be)) * use semantic-release for library ([53f775e](53f775e)) ### BREAKING CHANGES * The constructor and some methods of `IONGLOCController` have changed signatures. Updating the library will require changes to fix compilation errors. * refactor: Rename new fallback attribute References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * refactor: Extract code to separate methods * fix: Improve `getCurrentLocation` fallback and fix fallback condition References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * chore: update Gradle, AGP, and Android SDK * fix: Fallback Quality based on network connectivity * fix: Use maximumAge in addWatch fallback * fix: Improve use of providers in fallback References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * refactor: Extract methods and classes to separate files References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * chore: Return specific error on no network+location * docs: Document the IONGLOCLocationOptions properties * chore: Prepare to release 2.0.0 1.0.0->2.0.0 because it includes breaking changes References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * chore: remove outdate doc References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * chore: remove irrelevant portion of PR template References: https://outsystemsrd.atlassian.net/browse/RMET-2991 * refactor: minor changes from PR comments References: https://outsystemsrd.atlassian.net/browse/RMET-2991
1 parent 0de044e commit 41e5c62

File tree

2 files changed

+77
-1
lines changed

2 files changed

+77
-1
lines changed

CHANGELOG.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,79 @@
1+
# 1.0.0 (2025-10-24)
2+
3+
4+
* feat!: Fallback for no network or Play Services ([#7](https://github.com/ionic-team/ion-android-geolocation/issues/7)) ([e820114](https://github.com/ionic-team/ion-android-geolocation/commit/e8201143b225a8498e064aaae29422b3ef2bbe8e)), closes [IONGLOCLocationOptions#useLocationManagerFallback](https://github.com/IONGLOCLocationOptions/issues/useLocationManagerFallback)
5+
6+
7+
### Bug Fixes
8+
9+
* fix subtitle in README.md ([afc0bb4](https://github.com/ionic-team/ion-android-geolocation/commit/afc0bb4be6aaa619da5edcc2ca3144182786bac3))
10+
* fix subtitles in README.md ([148471a](https://github.com/ionic-team/ion-android-geolocation/commit/148471aca39018417327a50bc03d2dc916917e5c))
11+
* fix subtitles in README.md ([d778351](https://github.com/ionic-team/ion-android-geolocation/commit/d778351e5fbecd774054470985532bcdd61455a3))
12+
* fix typo in yml file ([765b75d](https://github.com/ionic-team/ion-android-geolocation/commit/765b75db8b9a1dc0c6b9aee3088aab588dc3d684))
13+
* fixing typo in README ([7b5fa41](https://github.com/ionic-team/ion-android-geolocation/commit/7b5fa4158ba2ddeea30d44997d5b4f65a8dbb619))
14+
* LICENSE file directory in publish-module.gradle file ([3340682](https://github.com/ionic-team/ion-android-geolocation/commit/3340682705e8b9d1d59b79222c8c4240fcf26149))
15+
* publish library under `io.ionic.libs` instead of `com.capacitorjs` ([1bf7cd8](https://github.com/ionic-team/ion-android-geolocation/commit/1bf7cd8dbfefcca82be46d23685e7778f453ebfb))
16+
* Publishing Migration To Central Portal ([#6](https://github.com/ionic-team/ion-android-geolocation/issues/6)) ([60228ff](https://github.com/ionic-team/ion-android-geolocation/commit/60228ffb96f0f4cdd575f2109508d6c1793f52fe))
17+
18+
19+
### Features
20+
21+
* add publish-android workflow to publish Android lib in Maven ([7d33cbe](https://github.com/ionic-team/ion-android-geolocation/commit/7d33cbed644fd508f6968af62920d9ec80251441))
22+
* bring full implementation of library from outsystems-geolocation repo ([0b1362c](https://github.com/ionic-team/ion-android-geolocation/commit/0b1362c18a103a2058f3c8fa6c6f722cbd3d9606))
23+
* set workflow_dispatch to manual trigger, avoiding the GitHub action to run when pushing to a branch ([8a1b7be](https://github.com/ionic-team/ion-android-geolocation/commit/8a1b7bedc3040e697dcc98d90bb09e04e22a5439))
24+
* use semantic-release for library ([53f775e](https://github.com/ionic-team/ion-android-geolocation/commit/53f775e61f127dfcb023da826afb05503c6be4ac))
25+
26+
27+
### BREAKING CHANGES
28+
29+
* The constructor and some methods of `IONGLOCController` have changed signatures. Updating the library will require changes to fix compilation errors.
30+
31+
* refactor: Rename new fallback attribute
32+
33+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
34+
35+
* refactor: Extract code to separate methods
36+
37+
* fix: Improve `getCurrentLocation` fallback and fix fallback condition
38+
39+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
40+
41+
* chore: update Gradle, AGP, and Android SDK
42+
43+
* fix: Fallback Quality based on network connectivity
44+
45+
* fix: Use maximumAge in addWatch fallback
46+
47+
* fix: Improve use of providers in fallback
48+
49+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
50+
51+
* refactor: Extract methods and classes to separate files
52+
53+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
54+
55+
* chore: Return specific error on no network+location
56+
57+
* docs: Document the IONGLOCLocationOptions properties
58+
59+
* chore: Prepare to release 2.0.0
60+
61+
1.0.0->2.0.0 because it includes breaking changes
62+
63+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
64+
65+
* chore: remove outdate doc
66+
67+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
68+
69+
* chore: remove irrelevant portion of PR template
70+
71+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
72+
73+
* refactor: minor changes from PR comments
74+
75+
References: https://outsystemsrd.atlassian.net/browse/RMET-2991
76+
177
# Changelog
278
All notable changes to this project will be documented in this file.
379

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>io.ionic.libs</groupId>
88
<artifactId>iongeolocation-android</artifactId>
9-
<version>2.0.0</version>
9+
<version>1.0.0</version>
1010
</project>

0 commit comments

Comments
 (0)