Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ferologics committed Oct 4, 2022
1 parent 40dbeea commit f82daac
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

## [1.0.0] - 2022-07-29
### Added
- Initial release of the expo plugin.
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.0.0");
exports.default = (0, config_plugins_1.createRunOncePlugin)(withHyperTrack, "hypertrack-sdk-expo", "1.1.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.0.0",
"version": "1.1.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.0.0"
"1.1.0"
);

0 comments on commit f82daac

Please sign in to comment.