Skip to content

Commit

Permalink
Update HyperTrack SDK Android to 7.5.5 (#33)
Browse files Browse the repository at this point in the history
Add opening PRs to justfile.
  • Loading branch information
pavel-kuznetsov-hypertrack authored May 24, 2024
1 parent cf79a5f commit 7b35022
Show file tree
Hide file tree
Showing 19 changed files with 52 additions and 22 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.3.1] - 2024-05-24

### Changed

- Updated HyperTrack SDK Android to [7.5.5](https://github.com/hypertrack/sdk-android/releases/tag/7.5.5)

## [3.3.0] - 2024-05-13

### Added
Expand Down Expand Up @@ -208,3 +214,4 @@ We are excited to announce the release of HyperTrack Ionic Capacitor SDK 2.0.0,
[3.2.1]: https://github.com/hypertrack/sdk-ionic-capacitor/releases/tag/3.2.1
[3.2.2]: https://github.com/hypertrack/sdk-ionic-capacitor/releases/tag/3.2.2
[3.3.0]: https://github.com/hypertrack/sdk-ionic-capacitor/releases/tag/3.3.0
[3.3.1]: https://github.com/hypertrack/sdk-ionic-capacitor/releases/tag/3.3.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub](https://img.shields.io/github/license/hypertrack/sdk-ionic-capacitor.svg?color=orange)](./LICENSE)
[![npm](https://img.shields.io/npm/v/hypertrack-sdk-ionic-capacitor.svg)](https://www.npmjs.com/package/hypertrack-sdk-ionic-capacitor)
[![iOS SDK](https://img.shields.io/badge/iOS%20SDK-5.5.4-brightgreen.svg)](https://github.com/hypertrack/sdk-ios)
[![Android SDK](https://img.shields.io/badge/Android%20SDK-7.5.4-brightgreen.svg)](https://github.com/hypertrack/sdk-android)
[![Android SDK](https://img.shields.io/badge/Android%20SDK-7.5.5-brightgreen.svg)](https://github.com/hypertrack/sdk-android)

[HyperTrack](https://www.hypertrack.com) lets you add live location tracking to your mobile app. Live location is made available along with ongoing activity, tracking controls and tracking outage with reasons.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {

buildscript {
ext.kotlin_version = project.hasProperty('kotlin_version') ? rootProject.ext.kotlin_version : '1.9.10'
ext.hypertrack_sdk_version = "7.5.4"
ext.hypertrack_sdk_version = "7.5.5"
ext.firebase_messaging_version = "23.1.1"

repositories {
Expand Down
7 changes: 4 additions & 3 deletions docs/classes/HyperTrack.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/enums/HyperTrackError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/interfaces/Subscription.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Errors.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Failure.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Location.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/LocationError.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/LocationWithDeviation.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/NotRunning.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/OrderStatus.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Result.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Starting.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/types/Success.html

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ alias c := clean
alias d := docs
alias gd := get-dependencies
alias od := open-docs
alias ogp := open-github-prs
alias ogr := open-github-releases
alias pt := push-tag
alias r := release
alias us := update-sdk
Expand Down Expand Up @@ -49,13 +51,24 @@ _latest-ios:
open-docs: docs
open docs/index.html

open-github-prs:
open "https://github.com/hypertrack/sdk-ionic-capacitor/pulls"

open-github-releases:
open "https://github.com/hypertrack/sdk-ionic-capacitor/releases"

_open-github-release-data:
code CHANGELOG.md
just open-github-releases

push-tag:
#!/usr/bin/env sh
set -euo pipefail
if [ $(git symbolic-ref --short HEAD) = "main" ] ; then
VERSION=$(just version)
git tag $VERSION
git push origin $VERSION
just _open-github-release-data
else
echo "You are not on main branch"
fi
Expand Down Expand Up @@ -127,6 +140,9 @@ update-sdk wrapper_version ios_version android_version commit="true" branch="tru
git add .
git commit -m "Update HyperTrack SDK iOS to {{ios_version}} and Android to {{android_version}}"
fi
if [ "{{branch}}" = "true" ] && [ "{{commit}}" = "true" ] ; then
just open-github-prs
fi
update-sdk-android wrapper_version android_version commit="true" branch="true": build
#!/usr/bin/env sh
Expand All @@ -145,6 +161,9 @@ update-sdk-android wrapper_version android_version commit="true" branch="true":
git add .
git commit -m "Update HyperTrack SDK Android to {{android_version}}"
fi
if [ "{{branch}}" = "true" ] && [ "{{commit}}" = "true" ] ; then
just open-github-prs
fi
update-sdk-ios wrapper_version ios_version commit="true" branch="true": build
#!/usr/bin/env sh
Expand All @@ -163,6 +182,9 @@ update-sdk-ios wrapper_version ios_version commit="true" branch="true": build
git add .
git commit -m "Update HyperTrack SDK iOS to {{ios_version}}"
fi
if [ "{{branch}}" = "true" ] && [ "{{commit}}" = "true" ] ; then
just open-github-prs
fi
_update-sdk-android-version-file android_version:
./scripts/update_file.sh android/build.gradle 'ext.hypertrack_sdk_version = ".*"' 'ext.hypertrack_sdk_version = "{{android_version}}"'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hypertrack-sdk-ionic-capacitor",
"version": "3.3.0",
"version": "3.3.1",
"description": "Capacitor plugin for HyperTrack generation SDKs",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 7b35022

Please sign in to comment.