Skip to content
This repository was archived by the owner on May 6, 2019. It is now read-only.

Commit 12b7c9c

Browse files
committed
Bump version
1 parent b2a9b52 commit 12b7c9c

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 Rudd Fawcett
3+
Copyright (c) 2015 Rudd Fawcett
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RFMarkdownTextView <br />[![Build Status](http://img.shields.io/travis/ruddfawcett/RFMarkdownTextView.svg?style=flat)](http://travis-ci.org/ruddfawcett/RFMarkdownTextView) [![RFMarkdownTextView Version](http://img.shields.io/cocoapods/v/RFMarkdownTextView.svg?style=flat)](http://cocoadocs.org/docsets/RFMarkdownTextView/1.2/) ![License MIT](http://img.shields.io/badge/license-MIT-orange.svg?style=flat) ![reposs](https://reposs.herokuapp.com/?path=ruddfawcett/RFMarkdownTextView&style=flat)
1+
RFMarkdownTextView <br />[![Build Status](http://img.shields.io/travis/ruddfawcett/RFMarkdownTextView.svg?style=flat)](http://travis-ci.org/ruddfawcett/RFMarkdownTextView) [![RFMarkdownTextView Version](http://img.shields.io/cocoapods/v/RFMarkdownTextView.svg?style=flat)](http://cocoadocs.org/docsets/RFMarkdownTextView/1.4/) ![License MIT](http://img.shields.io/badge/license-MIT-orange.svg?style=flat) ![reposs](https://reposs.herokuapp.com/?path=ruddfawcett/RFMarkdownTextView&style=flat)
22
==================
33

44
This is a UITextView that is supposed to replicate the comment toolbar in iOctocat (http://ioctocat.com) with auto-insert markdown functionality.
@@ -17,7 +17,7 @@ This is a UITextView that is supposed to replicate the comment toolbar in iOctoc
1717

1818
```ruby
1919
platform :ios, '7.0'
20-
pod "RFMarkdownTextView", "~> 1.3"
20+
pod "RFMarkdownTextView", "~> 1.4"
2121
```
2222

2323
### Installation without CocoaPods
@@ -37,9 +37,9 @@ Hope you enjoy it!
3737
##Screenshots
3838
###Side by Side Comparison (with iOctocat)
3939
![RFMarkdownTextView](http://i.imgur.com/NEAocbW.png)
40-
![iOctocat Comment](http://i.imgur.com/P8eeXZf.png)
40+
![iOctocat Comment](http://i.imgur.com/P8eeXZf.png)
4141
![RFMarkdownTextView 2](http://i.imgur.com/0jIR5vh.png)
42-
![iOctocat Comment 2](http://i.imgur.com/qPCf2wQ.png)
42+
![iOctocat Comment 2](http://i.imgur.com/qPCf2wQ.png)
4343

4444
Looking at these now, the text size seems smaller and the `*` and `` ` `` button titles don't seem to be centered. Feel free to open a pull request to fix either, as I won't be doing so.
4545

RFMarkdownTextView.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = 'RFMarkdownTextView'
3-
s.version = '1.3'
3+
s.version = '1.4'
44
s.summary = 'A UITextView that is supposed to replicate the comment toolbar in iOctocat (http://ioctocat.com) with auto-insert markdown functionality.'
55
s.homepage = 'https://github.com/ruddfawcett/RFMarkdownTextView'
66
s.screenshots = 'https://github-camo.global.ssl.fastly.net/da71b43dd3ddd7d76a1b7a43aca1efb9d1ad5854/687474703a2f2f692e696d6775722e636f6d2f4e5570537537462e706e67', 'https://github-camo.global.ssl.fastly.net/bb55d9d330df2a0acde3bcaaf022ec2266bbb27a/687474703a2f2f692e696d6775722e636f6d2f435a514a3662572e706e67'
77
s.license = 'MIT'
88
s.license = { :type => 'MIT', :file => 'LICENSE' }
99
s.author = { 'Rudd Fawcett' => '[email protected]' }
10+
s.social_media_url = 'https://twitter.com/ruddfawcett'
1011
s.platform = :ios, '7.0'
11-
s.source = { :git => 'https://github.com/ruddfawcett/RFMarkdownTextView.git', :tag => 'v1.3' }
12+
s.source = { :git => 'https://github.com/ruddfawcett/RFMarkdownTextView.git', :tag => 'v1.4' }
1213
s.source_files = 'RFMarkdownTextView/*.{h,m}'
1314
s.requires_arc = true
14-
s.dependency 'RFKeyboardToolbar', '~> 1.2'
15+
s.dependency 'RFKeyboardToolbar', '~> 1.3'
1516
end

0 commit comments

Comments
 (0)