Skip to content

Commit 1738fb8

Browse files
author
Martin Barreto
committed
update version
1 parent c3be940 commit 1738fb8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ XLForm
44
By [XMARTLABS](http://xmartlabs.com).
55

66
[![Build Status](https://travis-ci.org/xmartlabs/XLForm.svg?branch=master)](https://travis-ci.org/xmartlabs/XLForm)
7+
[![license](https://img.shields.io/badge/pod-3.0.2-blue.svg)](https://github.com/xmartlabs/XLForm/releases)
78

89
Purpose
910
--------------
@@ -960,7 +961,7 @@ Overriding `inputAccessoryViewForRowDescriptor:` `XLFormViewController` method.
960961
If you want to disable it completely you can return nil. But you can also customize its whole appearance here.
961962

962963
```obj-c
963-
- (UIView *)inputAccessoryViewForRowDescriptor:(XLFormRowDescriptor *)rowDescriptor
964+
- (UIView *)inputAccessoryViewForRowDescriptor:(XLFormRowDescriptor *)rowDescriptor
964965
{
965966
return nil; //will hide it completely
966967
// You can use the rowDescriptor parameter to hide/customize the accessory view for a particular rowDescriptor type.
@@ -985,7 +986,7 @@ Installation
985986
The easiest way to use XLForm in your app is via [CocoaPods](http://cocoapods.org/ "CocoaPods").
986987

987988
1. Add the following line in the project's Podfile file:
988-
`pod 'XLForm', '~> 3.0.0'`.
989+
`pod 'XLForm', '~> 3.0'`.
989990
2. Run the command `pod install` from the Podfile folder directory.
990991

991992
XLForm **has no** dependencies over other pods.
@@ -1021,7 +1022,7 @@ Requirements
10211022
Release Notes
10221023
--------------
10231024

1024-
Version 3.0.2 (master)
1025+
Version 3.0.2
10251026
* Fix issue when inline pickers expand beyond table.
10261027

10271028
Version 3.0.1

XLForm.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'XLForm'
3-
s.version = '3.0.1'
3+
s.version = '3.0.2'
44
s.license = { :type => 'MIT' }
55
s.summary = 'XLForm is the most flexible and powerful iOS library to create dynamic table-view forms.'
66
s.description = <<-DESC
77
The goal of the library is to get the same power of hand-made forms but spending 1/10 of the time. XLForm provides a very powerful DSL used to create a form, validate & serialize the form data. It keeps track of this specification on runtime, updating the UI on the fly.
88
DESC
99
s.homepage = 'https://github.com/xmartlabs/XLForm'
1010
s.authors = { 'Martin Barreto' => '[email protected]' }
11-
s.source = { :git => 'https://github.com/xmartlabs/XLForm.git', :tag => 'v3.0.1' }
11+
s.source = { :git => 'https://github.com/xmartlabs/XLForm.git', :tag => 'v3.0.2' }
1212
s.source_files = 'XLForm/XL/**/*.{h,m}'
1313
s.requires_arc = true
1414
s.ios.deployment_target = '7.0'

0 commit comments

Comments
 (0)