Skip to content

Commit

Permalink
Release 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Aug 17, 2015
1 parent 11dca76 commit a9a8c17
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 26 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#Change Log
All notable changes to this project will be documented in this file.

---

## [1.9.1](https://github.com/ReactiveX/RxSwift/releases/tag/1.9.1)

####Updated

* Adds Calculator example app
* Performance improvements for Queue

####Fixed

* Crash in `rx_didChangeAuthorizationStatus`. [#89](https://github.com/ReactiveX/RxSwift/issues/89)
3 changes: 3 additions & 0 deletions Rx.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions RxBlocking.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxBlocking"
s.version = "1.9"
s.version = "1.9.1"
s.summary = "RxSwift Blocking operatos"
s.description = <<-DESC
Set of blocking operators for unit testing
Expand All @@ -17,5 +17,5 @@ Pod::Spec.new do |s|

s.source_files = 'RxBlocking/RxBlocking/**/*.swift'

s.dependency 'RxSwift'
s.dependency 'RxSwift', '~> 1.0'
end
4 changes: 2 additions & 2 deletions RxCocoa.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxCocoa"
s.version = "1.9"
s.version = "1.9.1"
s.summary = "RxSwift Cocoa extensions"
s.description = <<-DESC
* UI extensions
Expand All @@ -21,5 +21,5 @@ Pod::Spec.new do |s|
s.ios.source_files = 'RxCocoa/RxCocoa/iOS/**/*.swift'
s.osx.source_files = 'RxCocoa/RxCocoa/OSX/**/*.swift'

s.dependency 'RxSwift'
s.dependency 'RxSwift', '~> 1.0'
end
2 changes: 1 addition & 1 deletion RxSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxSwift"
s.version = "1.9"
s.version = "1.9.1"
s.summary = "Microsoft Reactive Extensions (Rx) for Swift and iOS/OSX platform"
s.description = <<-DESC
This is a Swift port of Reactive extensions.
Expand Down
30 changes: 9 additions & 21 deletions scripts/automation-tests/04_controlsTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

test("----- UIBarButtonItem tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().navigationBar().rightButton().tap();

Expand All @@ -21,7 +21,7 @@ test("----- UIBarButtonItem tap -----", function (check, pass) {

test("----- UIBarButtonItem tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().buttons()["TapMe"].tap();

Expand All @@ -39,7 +39,7 @@ test("----- UIBarButtonItem tap -----", function (check, pass) {

test("----- UISegmentedControl tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().segmentedControls()[0].buttons()["Second"].tap();

Expand All @@ -63,7 +63,7 @@ test("----- UISegmentedControl tap -----", function (check, pass) {

test("----- UISwitch tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().switches()[0].setValue(0);

Expand All @@ -87,7 +87,7 @@ test("----- UISwitch tap -----", function (check, pass) {

test("----- UITextField text -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().textFields()[0].textFields()[0].tap();
// UIATarget.localTarget().frontMostApp().keyboard().typeString("t");// fails if software keyboard is disabled
Expand All @@ -107,7 +107,7 @@ test("----- UITextField text -----", function (check, pass) {

test("----- UISlider value -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().sliders()[0].dragToValue(0.00);

Expand All @@ -124,7 +124,7 @@ test("----- UISlider value -----", function (check, pass) {

test("----- UIDatePicker date -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().pickers()[0].wheels()[0].tapWithOptions({tapOffset:{x:0.49, y:0.65}});
UIATarget.localTarget().frontMostApp().mainWindow().pickers()[0].wheels()[1].tapWithOptions({tapOffset:{x:0.35, y:0.64}});
Expand All @@ -143,7 +143,7 @@ test("----- UIDatePicker date -----", function (check, pass) {

test("----- UIActionSheet tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().frontMostApp().mainWindow().buttons()["Open ActionSheet"].tap();
UIATarget.localTarget().frontMostApp().actionSheet().collectionViews()[0].cells()["OK"].buttons()["OK"].tap();
Expand All @@ -161,7 +161,7 @@ test("----- UIActionSheet tap -----", function (check, pass) {

test("----- UIAlertView tap -----", function (check, pass) {

UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4]();
UIATarget.localTarget().frontMostApp().mainWindow().tableViews()[0].cells()[4].tap();

UIATarget.localTarget().onAlert = function(alert){
UIATarget.localTarget().onAlert = null
Expand All @@ -184,15 +184,3 @@ test("----- UIAlertView tap -----", function (check, pass) {
UIATarget.localTarget().frontMostApp().mainWindow().buttons()["Open AlertView"].tap();
UIATarget.localTarget().delay( 4 );
});












0 comments on commit a9a8c17

Please sign in to comment.