Skip to content

Commit

Permalink
updated changelog and podspecs for 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sobri909 committed Nov 27, 2017
1 parent 96418fb commit fd50f52
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions ArcKit.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "ArcKit"
s.version = "4.0.0.pre.1"
s.version = "4.0.0"
s.summary = "Location and activity recording framework"
s.homepage = "https://arc-web.herokuapp.com"
s.author = { "Matt Greenfield" => "matt@bigpaua.com" }
s.license = { :text => "Copyright 2017 Matt Greenfield. All rights reserved.",
:type => "Commercial" }
s.source = { :git => 'https://github.com/sobri909/ArcKit.git', :tag => '4.0.0.pre.1' }
s.source = { :git => 'https://github.com/sobri909/ArcKit.git', :tag => '4.0.0' }
s.source_files = 'ArcKit/*'
s.frameworks = 'CoreLocation', 'CoreMotion'
s.ios.deployment_target = '10.0'
s.dependency 'ArcKitCore', '4.0.0.pre.1'
s.dependency 'ArcKitCore', '4.0.0'
end
4 changes: 2 additions & 2 deletions ArcKitCore.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "ArcKitCore"
s.version = "4.0.0.pre.1"
s.version = "4.0.0"
s.summary = "Location and activity recording framework"
s.homepage = "https://arc-web.herokuapp.com"
s.author = { "Matt Greenfield" => "matt@bigpaua.com" }
s.license = { :text => "Copyright 2017 Matt Greenfield. All rights reserved.",
:type => "Commercial" }
s.source = { :git => 'https://github.com/sobri909/ArcKit.git', :tag => '4.0.0.pre.1' }
s.source = { :git => 'https://github.com/sobri909/ArcKit.git', :tag => '4.0.0' }
s.frameworks = 'CoreLocation', 'CoreMotion'
s.ios.deployment_target = '10.0'
s.ios.vendored_frameworks = 'ArcKitCore.framework'
Expand Down
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
# Changelog

## [4.0.0.pre.1] - 2017-11-26
## [4.0.0] - 2017-11-27

### Added

- Added a low power Sleep Mode. Read the `LocomotionManager.useLowPowerSleepModeWhileStationary` API
docs for more details.
- Added ability to disable dynamic desiredAccuracy adjustments. Read the
`LocomotionManager.dynamicallyAdjustDesiredAccuracy` API docs for more details.
- Added LocomotionManager settings for deciding which (if any) Core Motion features to make use of
- Added LocomotionManager settings for configuring which (if any) Core Motion features to make use of
whilst recording.

### Removed

- Core Motion recording is no longer started explicitly with startCoreMotion(). Instead you
should call startRecording(), and use the new Core Motion settings properties to determine
which (if any) Core Motion features should be enabled.
- `startCoreLocation()` has been renamed to `startRecording()` and now starts both Core Location
and Core Motion recording (depending on your LocomotionManager settings). Additionally,
`stopCoreLocation()` has been renamed to `stopRecording()`, and `startCoreMotion()` and
`stopCoreMotion()` have been removed.
- `recordingCoreLocation` and `recordingCoreMotion` have been removed, and replaced by
`recordingState`.

## [3.0.0] - 2017-11-23

Expand Down

0 comments on commit fd50f52

Please sign in to comment.