Skip to content

Commit

Permalink
Merge pull request #51 from shichimitoucarshi/release
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
keisukeYamagishi authored Nov 13, 2022
2 parents da5f088 + b53cedb commit d2c942e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ClimbBar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "ClimbBar"
s.version = "1.7.0"
s.version = "1.7.1"
s.summary = "You can move another object synchronously with the scroll value."
s.description = <<-DESC
iOS library that can extend a View that has scrollable elements such as UITableView and UIWebView.
Expand Down
2 changes: 1 addition & 1 deletion ClimbBar/ClimbBar.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import UIKit.UIGestureRecognizer
// swiftlint:disable all
public class ClimbBar: NSObject {
public var observer: ((State) -> Void)?
public var isReachable: Bool = false

var _defaultContentOffset: CGPoint
var _defaultInset: UIEdgeInsets
var _configurations: Configuration!
var _scrollable: UIScrollView!
var _beginDrag: CGFloat
var _previousState: CGFloat!
public var isReachable: Bool = false
var _climbBarObservable: ClimbBarObservable

public struct State {
Expand Down
6 changes: 4 additions & 2 deletions ClimbBarExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.shichimitoucarashi.ClimbBarExample;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -542,6 +543,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.shichimitoucarashi.ClimbBarExample;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -571,7 +573,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = com.shichimitoucarashi.climbbar.ClimbBar;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -606,7 +608,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
PRODUCT_BUNDLE_IDENTIFIER = com.shichimitoucarashi.climbbar.ClimbBar;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion ClimbBarExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.3</string>
<string>1.1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down

0 comments on commit d2c942e

Please sign in to comment.