diff --git a/AlamofireNetworkActivityIndicator.podspec b/AlamofireNetworkActivityIndicator.podspec
index 0c1eef2..0dc9899 100644
--- a/AlamofireNetworkActivityIndicator.podspec
+++ b/AlamofireNetworkActivityIndicator.podspec
@@ -1,11 +1,12 @@
Pod::Spec.new do |s|
s.name = 'AlamofireNetworkActivityIndicator'
- s.version = '2.2.1'
+ s.version = '2.3.0'
s.license = 'MIT'
s.summary = 'Controls the visibility of the network activity indicator on iOS using Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireNetworkActivityIndicator'
s.social_media_url = 'http://twitter.com/AlamofireSF'
s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' }
+ s.documentation_url = 'https://alamofire.github.io/AlamofireNetworkActivityIndicator/'
s.source = { :git => 'https://github.com/Alamofire/AlamofireNetworkActivityIndicator.git', :tag => s.version }
s.source_files = 'Source/*.swift'
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54d9fb1..a9cce33 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
`AlamofireNetworkActivityIndicator` adheres to [Semantic Versioning](http://semver.org/).
#### 2.x Releases
+- `2.3.x` Releases - [2.3.0](#230)
- `2.2.x` Releases - [2.2.0](#220) | [2.2.1](#221)
- `2.1.x` Releases - [2.1.0](#210)
- `2.0.x` Releases - [2.0.0](#200) | [2.0.1](#201)
@@ -13,6 +14,18 @@ All notable changes to this project will be documented in this file.
---
+## [2.3.0](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/releases/tag/2.3.0)
+Released on 2018-09-15. All issues associated with this milestone can be found using this
+[filter](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/milestone/9?closed=1).
+
+#### Updated
+- Code and dependencies for Xcode 10 and Swift 4.2.
+ - Updated by [Jon Shier](https://github.com/jshier) in Pull Request [#42](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/pull/42).
+
+#### Fixed
+- Bitcode settings.
+ - Fixed by [Jaehong Kang](https://github.com/sinoru) in Pull Request [#35](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/pull/35).
+
## [2.2.1](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/releases/tag/2.2.1)
Released on 2018-03-31. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireNetworkActivityIndicator/milestone/8?closed=1).
diff --git a/Source/Info.plist b/Source/Info.plist
index 51c4067..344518f 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
Swift
-public static let shared = NetworkActivityIndicatorManager()
+ public static let shared: NetworkActivityIndicatorManager
Swift
-public var isEnabled: Bool
+ public var isEnabled: Bool { get set }
Swift
-public private(set) var isNetworkActivityIndicatorVisible: Bool = false
+ public private(set) var isNetworkActivityIndicatorVisible: Bool { get set }
Swift
-public var startDelay: TimeInterval = 1.0
+ public var startDelay: TimeInterval
Swift
-public var completionDelay: TimeInterval = 0.2
+ public var completionDelay: TimeInterval