Skip to content

Commit

Permalink
Version 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamonholmgren committed Mar 17, 2016
1 parent f872ac8 commit 714483d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
8 changes: 4 additions & 4 deletions ProMotion.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ require File.expand_path('../lib/ProMotion/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "ProMotion"
gem.authors = ["Jamon Holmgren", "Mark Rickert", "Silas Matson"]
gem.email = ["jamon@clearsightstudio.com", "mark@mohawkapps.com", "silas@clearsightstudio.com"]
gem.description = "ProMotion is a fast way to get started building RubyMotion iOS apps."
gem.email = ["jamon@infinite.red", "mark@infinite.red", "silas@infinite.red"]
gem.description = "ProMotion gives RubyMotion iOS view controllers a more Ruby-like API."
gem.summary = "
ProMotion is a fast way to get started building RubyMotion apps. Instead of dealing
with UIViewControllers, UITableViewControllers, and the like, you work with Screens.
We abstract the view controller boilerplate to make iOS development more like Ruby
and less like Objective-C. With a memorable, concise syntax and a friendly, helpful
and less like Objective-C. With a memorable, concise API and a friendly, helpful
community, ProMotion is a great way to get started with iOS development.
"
gem.homepage = "https://github.com/clearsightstudio/ProMotion"
gem.homepage = "https://github.com/infinitered/ProMotion"
gem.license = "MIT"

gem.files = Dir.glob("lib/**/*.rb")
Expand Down
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ end

# Changelog

## Version 2.6.0

This release includes a few new features and bugfixes and is backwards compatible with all 2.x releases.

* PR #773 Add a `on_continue_user_activity` delegate method
* PR #766 Fix nav_bar_button class method
* Other minor bugfixes and documentation updates

## Version 2.5.0

This release includes some new features and bugfixes and is backwards compatible with all 2.x releases.
Expand All @@ -98,16 +106,6 @@ This release includes some new features and bugfixes and is backwards compatible
* PR #736 Adds the index path when deleting a cell
* Several other bugfix PRs

## Version 2.4.0

This release includes several new features and is backwards compatible with all 2.x releases.

* PR #686 Adds :searchable to the whitelisted properties a cell can have so that a warning is not generated.
* PR #688 Adds support for SDWebImage and takes preference over JMImageCache. _JMImageCache will still be supported till ProMotion 3.0 but we highly recommend you switch to SDWebImage._
* PR #679 Extract methods from tablescreen for reuse in modules for [redpotion](https://github.com/infinitered/redpotion).
* PR #677 Added `add_child_screen` and `remove_child_screen` methods to `PM::Screen`.
* PR #687 Adds persisting tab order when changed by the user for tab bars over 5 screens.

# Apps built on ProMotion

[Apps built on ProMotion](http://promotion.readthedocs.org/en/master/ProMotion%20Apps/)
Expand Down
2 changes: 1 addition & 1 deletion lib/ProMotion/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ProMotion
VERSION = "2.5.0" unless defined?(ProMotion::VERSION)
VERSION = "2.6.0" unless defined?(ProMotion::VERSION)
end

0 comments on commit 714483d

Please sign in to comment.