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

Commit 714483d

Browse files
committed
Version 2.6.0
1 parent f872ac8 commit 714483d

3 files changed

Lines changed: 13 additions & 15 deletions

File tree

ProMotion.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ require File.expand_path('../lib/ProMotion/version', __FILE__)
44
Gem::Specification.new do |gem|
55
gem.name = "ProMotion"
66
gem.authors = ["Jamon Holmgren", "Mark Rickert", "Silas Matson"]
7-
gem.email = ["jamon@clearsightstudio.com", "mark@mohawkapps.com", "silas@clearsightstudio.com"]
8-
gem.description = "ProMotion is a fast way to get started building RubyMotion iOS apps."
7+
gem.email = ["jamon@infinite.red", "mark@infinite.red", "silas@infinite.red"]
8+
gem.description = "ProMotion gives RubyMotion iOS view controllers a more Ruby-like API."
99
gem.summary = "
1010
ProMotion is a fast way to get started building RubyMotion apps. Instead of dealing
1111
with UIViewControllers, UITableViewControllers, and the like, you work with Screens.
1212
We abstract the view controller boilerplate to make iOS development more like Ruby
13-
and less like Objective-C. With a memorable, concise syntax and a friendly, helpful
13+
and less like Objective-C. With a memorable, concise API and a friendly, helpful
1414
community, ProMotion is a great way to get started with iOS development.
1515
"
16-
gem.homepage = "https://github.com/clearsightstudio/ProMotion"
16+
gem.homepage = "https://github.com/infinitered/ProMotion"
1717
gem.license = "MIT"
1818

1919
gem.files = Dir.glob("lib/**/*.rb")

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,14 @@ end
8989

9090
# Changelog
9191

92+
## Version 2.6.0
93+
94+
This release includes a few new features and bugfixes and is backwards compatible with all 2.x releases.
95+
96+
* PR #773 Add a `on_continue_user_activity` delegate method
97+
* PR #766 Fix nav_bar_button class method
98+
* Other minor bugfixes and documentation updates
99+
92100
## Version 2.5.0
93101

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

101-
## Version 2.4.0
102-
103-
This release includes several new features and is backwards compatible with all 2.x releases.
104-
105-
* PR #686 Adds :searchable to the whitelisted properties a cell can have so that a warning is not generated.
106-
* 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._
107-
* PR #679 Extract methods from tablescreen for reuse in modules for [redpotion](https://github.com/infinitered/redpotion).
108-
* PR #677 Added `add_child_screen` and `remove_child_screen` methods to `PM::Screen`.
109-
* PR #687 Adds persisting tab order when changed by the user for tab bars over 5 screens.
110-
111109
# Apps built on ProMotion
112110

113111
[Apps built on ProMotion](http://promotion.readthedocs.org/en/master/ProMotion%20Apps/)

lib/ProMotion/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ProMotion
2-
VERSION = "2.5.0" unless defined?(ProMotion::VERSION)
2+
VERSION = "2.6.0" unless defined?(ProMotion::VERSION)
33
end

0 commit comments

Comments
 (0)