Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ealeksandrov committed Dec 12, 2020
1 parent 4fd6fef commit cc642f6
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 79 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# EARestrictedScrollView

## Version 2.1.0

* Updates deployment target to iOS 9
* Adds SPM support

## Version 2.0.5

* Updates library to Swift 5
Expand Down
4 changes: 2 additions & 2 deletions EARestrictedScrollView.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |s|

s.name = 'EARestrictedScrollView'
s.version = '2.0.5'
s.version = '2.1.0'
s.swift_version = '5.0'
s.summary = 'UIScrollView sublass with ability to restrict or limit scrolling area.'
s.screenshot = 'https://raw.githubusercontent.com/ealeksandrov/EARestrictedScrollView/master/Screenshot01.png'
s.screenshot = 'https://raw.githubusercontent.com/ealeksandrov/EARestrictedScrollView/master/Screenshots/Screenshot01.png'
s.homepage = 'https://github.com/ealeksandrov/EARestrictedScrollView'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Evgeny Aleksandrov' => 'evgeny@aleksandrov.ws' }
Expand Down
1 change: 1 addition & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'

use_frameworks!
install! 'cocoapods', :share_schemes_for_development_pods => true

# ignore all warnings from all pods
inhibit_all_warnings!
Expand Down
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- EARestrictedScrollView (2.0.5)
- EARestrictedScrollView (2.1.0)
- iOSSnapshotTestCase (5.0.2):
- iOSSnapshotTestCase/SwiftSupport (= 5.0.2)
- iOSSnapshotTestCase/Core (5.0.2)
Expand All @@ -19,9 +19,9 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
EARestrictedScrollView: 652921dc5d6cba63d4d44788a3402ad9b115915e
EARestrictedScrollView: 0377202abcf59f0c7361ff26ac66baf7d0723317
iOSSnapshotTestCase: 2d51aa06775e95cecb0a1fb9c5c159ccd1dd4596

PODFILE CHECKSUM: d22c88137f79d62475ba574349f58aa9330f5373
PODFILE CHECKSUM: 58383cea10cca756a6fd47a57a75452437e14f99

COCOAPODS: 1.10.0

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 55 additions & 55 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![CI Status](https://github.com/ealeksandrov/EARestrictedScrollView/workflows/CI/badge.svg?branch=master)](https://github.com/ealeksandrov/EARestrictedScrollView/actions)
[![Version](https://img.shields.io/cocoapods/v/EARestrictedScrollView.svg?style=flat)](http://cocoadocs.org/docsets/EARestrictedScrollView)
[![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-4BC51D.svg?style=flat)](https://swift.org/package-manager/)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![License](https://img.shields.io/cocoapods/l/EARestrictedScrollView.svg?style=flat)](http://cocoadocs.org/docsets/EARestrictedScrollView)
[![Platform](https://img.shields.io/cocoapods/p/EARestrictedScrollView.svg?style=flat)](http://cocoadocs.org/docsets/EARestrictedScrollView)
Expand Down Expand Up @@ -45,7 +46,7 @@ You can setup EARestrictedScrollView using [Carthage](https://github.com/Carthag
1. Add EARestrictedScrollView to your project's `Podfile`:

```ruby
pod 'EARestrictedScrollView', '~> 2.0.0'
pod 'EARestrictedScrollView', '~> 2.1.0'
```

2. Run `pod update` or `pod install` in your project directory.
Expand All @@ -55,7 +56,7 @@ You can setup EARestrictedScrollView using [Carthage](https://github.com/Carthag
1. Add EARestrictedScrollView to your project’s ‘Swift Packages’ section or `Package.swift`:

```swift
.package(url: "https://github.com/ealeksandrov/EARestrictedScrollView.git", from: "2.0.0")
.package(url: "https://github.com/ealeksandrov/EARestrictedScrollView.git", from: "2.1.0")
```

### Setting Up Manually
Expand Down

0 comments on commit cc642f6

Please sign in to comment.