Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tulushev committed Jan 4, 2023
1 parent c1294bd commit b5d4ae4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2022-10-4
## [1.2.0] - 2023-01-04
### Changed
- Bumped the minimum deployment target to iOS 13, in lockstep with Expo

## [1.1.0] - 2022-10-04
### Changed
- Use ExpoAppDelegateSubscriber protocol to proxy AppDelegate methods ([#2](https://github.com/hypertrack/sdk-expo/pull/2))

Expand Down
2 changes: 1 addition & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ConfigPlugin } from "@expo/config-plugins";
export declare type Props = {
export type Props = {
locationPermission?: string;
motionPermission?: string;
};
Expand Down
2 changes: 1 addition & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ const withHyperTrack = (config, props) => {
config = (0, withHyperTrackAndroid_1.withHyperTrackAndroid)(config, props);
return config;
};
exports.default = (0, config_plugins_1.createRunOncePlugin)(withHyperTrack, "hypertrack-sdk-expo", "1.1.0");
exports.default = (0, config_plugins_1.createRunOncePlugin)(withHyperTrack, "hypertrack-sdk-expo", "1.2.0");
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-expo",
"version": "1.1.0",
"version": "1.2.0",
"license": "MIT",
"description": "Config plugin to auto configure hypertrack-sdk-react-native on prebuild",
"homepage": "https://github.com/hypertrack/sdk-expo",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ const withHyperTrack: ConfigPlugin<Props> = (config, props) => {
export default createRunOncePlugin(
withHyperTrack,
"hypertrack-sdk-expo",
"1.1.0"
"1.2.0"
);

0 comments on commit b5d4ae4

Please sign in to comment.