Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

Commit 9f7696d

Browse files
committed
public extensions
1 parent 8e033d8 commit 9f7696d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CollectionView.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CollectionView'
3-
s.version = '1.0.2'
3+
s.version = '1.0.3'
44
s.summary = 'CollectionViews with ease.'
55
s.description = <<-DESC
66
A view model framework around collection views.

Sources/Grid.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
import UIKit
1010

11-
extension UIEdgeInsets {
12-
init(all value: CGFloat) {
11+
public extension UIEdgeInsets {
12+
public init(all value: CGFloat) {
1313
self.init(top: value, left: value, bottom: value, right: value)
1414
}
1515
}
1616

17-
extension CGFloat {
17+
public extension CGFloat {
1818

1919
public var evenRounded: CGFloat {
2020
var newValue = self.rounded(.towardZero)

0 commit comments

Comments
 (0)