Skip to content

Commit

Permalink
Changed some access modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Danijel Huis authored and Danijel Huis committed Aug 19, 2017
1 parent aa469b4 commit e7f27f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HDAugmentedReality.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "HDAugmentedReality"
s.version = "2.0.0"
s.version = "2.1.0"
s.summary = "Augmented Reality component for iOS, written in Swift 2.0"
s.description = <<-DESC
...
Expand Down
4 changes: 2 additions & 2 deletions HDAugmentedReality/Classes/ARViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ open class ARViewController: UIViewController, ARTrackingManagerDelegate
//==========================================================================================================================================================
// MARK: Init
//==========================================================================================================================================================
init()
public init()
{
super.init(nibName: nil, bundle: nil)
self.initializeInternal()
Expand Down Expand Up @@ -131,7 +131,7 @@ open class ARViewController: UIViewController, ARTrackingManagerDelegate
}

/// Intended for use in subclasses, no need to call super
internal func initialize()
open func initialize()
{

}
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ platform :ios, '8.0'
use_frameworks!

target "TargetName" do
pod 'HDAugmentedReality', '~> 2.0'
pod 'HDAugmentedReality', '~> 2.1'
end
```

Expand Down

0 comments on commit e7f27f7

Please sign in to comment.