From a9a8c17045e308297e1f57ab93754ed635147dfe Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 17 Aug 2015 10:32:11 +0200 Subject: [PATCH] Release 1.9.1 --- CHANGELOG.md | 15 ++++++++++ Rx.xcworkspace/contents.xcworkspacedata | 3 ++ RxBlocking.podspec | 4 +-- RxCocoa.podspec | 4 +-- RxSwift.podspec | 2 +- scripts/automation-tests/04_controlsTests.js | 30 ++++++-------------- 6 files changed, 32 insertions(+), 26 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..36fb037d1 --- /dev/null +++ b/CHANGELOG.md @@ -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) diff --git a/Rx.xcworkspace/contents.xcworkspacedata b/Rx.xcworkspace/contents.xcworkspacedata index 92bb55e52..665960500 100644 --- a/Rx.xcworkspace/contents.xcworkspacedata +++ b/Rx.xcworkspace/contents.xcworkspacedata @@ -7,6 +7,9 @@ + + diff --git a/RxBlocking.podspec b/RxBlocking.podspec index 207a31955..2ce8423e1 100644 --- a/RxBlocking.podspec +++ b/RxBlocking.podspec @@ -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 @@ -17,5 +17,5 @@ Pod::Spec.new do |s| s.source_files = 'RxBlocking/RxBlocking/**/*.swift' - s.dependency 'RxSwift' + s.dependency 'RxSwift', '~> 1.0' end diff --git a/RxCocoa.podspec b/RxCocoa.podspec index 7878764c6..9b624b166 100644 --- a/RxCocoa.podspec +++ b/RxCocoa.podspec @@ -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 @@ -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 diff --git a/RxSwift.podspec b/RxSwift.podspec index f8fbac7b6..2d2ea446b 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -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. diff --git a/scripts/automation-tests/04_controlsTests.js b/scripts/automation-tests/04_controlsTests.js index 5e82e0dd8..894c1e07a 100644 --- a/scripts/automation-tests/04_controlsTests.js +++ b/scripts/automation-tests/04_controlsTests.js @@ -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(); @@ -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(); @@ -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(); @@ -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); @@ -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 @@ -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); @@ -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}}); @@ -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(); @@ -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 @@ -184,15 +184,3 @@ test("----- UIAlertView tap -----", function (check, pass) { UIATarget.localTarget().frontMostApp().mainWindow().buttons()["Open AlertView"].tap(); UIATarget.localTarget().delay( 4 ); }); - - - - - - - - - - - -