Skip to content

Commit

Permalink
Release 4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Mar 10, 2019
1 parent 9baed34 commit fc6030e
Show file tree
Hide file tree
Showing 17 changed files with 58 additions and 60 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ All notable changes to this project will be documented in this file.
---
## Master

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

* Adds `UIView.rx.backgroundColor` Binder. #1888
* Bring back the `first` operator to `ObservableType`. #1886

### Anomalies

* Fix multiple disposes on ScheduledDisposables. #1892
* Fix `DelegateProxy` main thread validation. #1882
* Bring back the `first` operator to `ObservableType`. #1886

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

Expand Down
2 changes: 1 addition & 1 deletion RxAtomic.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxAtomic"
s.version = "4.4.1"
s.version = "4.4.2"
s.summary = "Atomic primitives for RxSwift"
s.description = <<-DESC
Atomic primitives for RxSwift.
Expand Down
2 changes: 1 addition & 1 deletion RxAtomic/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.4.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
6 changes: 3 additions & 3 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 = "4.4.1"
s.version = "4.4.2"
s.summary = "RxSwift Blocking operatos"
s.description = <<-DESC
Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests
Expand All @@ -25,6 +25,6 @@ Waiting for observable sequence to complete before exiting command line applicat
s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxBlocking/Platform/**/*.swift'

s.dependency 'RxAtomic', '~> 4.4'
s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxAtomic', '~> 4.4', '>= 4.4.2'
s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2'
end
2 changes: 1 addition & 1 deletion RxBlocking/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
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 = "4.4.1"
s.version = "4.4.2"
s.summary = "RxSwift Cocoa extensions"
s.description = <<-DESC
* UI extensions
Expand All @@ -22,5 +22,5 @@ Pod::Spec.new do |s|
s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift'
s.exclude_files = 'RxCocoa/Platform/**/*.swift', 'Platform/AtomicInt.swift'

s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2'
end
2 changes: 1 addition & 1 deletion RxCocoa/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions 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 = "4.4.1"
s.version = "4.4.2"
s.summary = "RxSwift is a Swift implementation of Reactive Extensions"
s.description = <<-DESC
This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)
Expand Down Expand Up @@ -35,5 +35,5 @@ gitDiff().grep("bug").less // sequences of swift objects
s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxSwift/Platform/**/*.swift'

s.dependency 'RxAtomic', '~> 4.4'
s.dependency 'RxAtomic', '~> 4.4', '>= 4.4.2'
end
2 changes: 1 addition & 1 deletion RxSwift/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions RxTest.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxTest"
s.version = "4.4.1"
s.version = "4.4.2"
s.summary = "RxSwift Testing extensions"
s.description = <<-DESC
Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers
Expand Down Expand Up @@ -56,8 +56,8 @@ func testMap() {

s.framework = 'XCTest'

s.dependency 'RxAtomic', '~> 4.4'
s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxAtomic', '~> 4.4', '>= 4.4.2'
s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2'

s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
end
2 changes: 1 addition & 1 deletion RxTest/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
12 changes: 6 additions & 6 deletions Tests/RxCocoaTests/SharedSequence+Test.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ extension SharedSequenceTest {
var expectation2: XCTestExpectation!

_ = backgroundScheduler.schedule(()) { _ in
var subscribing1 = true
var subscribing1 = AtomicInt(1)
let firstSubscriptionFuture = SingleAssignmentDisposable()
let firstSubscription = xs.asObservable().subscribe { e in
if !subscribing1 {
if globalLoad(&subscribing1) == 0 {
XCTAssertTrue(DispatchQueue.isMain)
}
switch e {
Expand All @@ -57,12 +57,12 @@ extension SharedSequenceTest {
}
}
firstSubscriptionFuture.setDisposable(firstSubscription)
subscribing1 = false
sub(&subscribing1, 1)

var subscribing = true
var subscribing = AtomicInt(1)
let secondSubscriptionFuture = SingleAssignmentDisposable()
let secondSubscription = xs.asObservable().subscribe { e in
if !subscribing {
if globalLoad(&subscribing) == 0 {
XCTAssertTrue(DispatchQueue.isMain)
}
switch e {
Expand All @@ -80,7 +80,7 @@ extension SharedSequenceTest {
}
secondSubscriptionFuture.setDisposable(secondSubscription)

subscribing = false
sub(&subscribing, 1)

// Subscription should be made on main scheduler
// so this will make sure execution is continued after
Expand Down
6 changes: 1 addition & 5 deletions scripts/all-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,8 @@ if [ "${RELEASE_TEST}" -eq 1 ]; then
CONFIGURATIONS=(Debug Release Release-Tests)
fi

if [ "${RELEASE_TEST}" -eq 1 ]; then
scripts/validate-markdown.sh
fi

if [ "${VALIDATE_PODS}" -eq 1 ]; then
scripts/validate-podspec.sh
SWIFT_VERSION=4.2 scripts/validate-podspec.sh
fi

if [ "${VALIDATE_IOS_EXAMPLE}" -eq 1 ]; then
Expand Down
24 changes: 15 additions & 9 deletions scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,32 @@ BOLDWHITE="\033[1m\033[37m"
# make sure all tests are passing

if [[ `uname` == "Darwin" ]]; then
if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.iOS-11-3 | wc -l` -eq 1 ]; then
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/11.3
if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.iOS-12-1 | wc -l` -eq 1 ]; then
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/12.1
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.iOS-11-4 | wc -l` -eq 1 ]; then
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/11.4
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/11.4
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.iOS-11-3 | wc -l` -eq 1 ]; then
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/11.3
else
DEFAULT_IOS_SIMULATOR=RxSwiftTest/iPhone-6/iOS/11.0
fi

if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.watchOS-4-3 | wc -l` -eq 1 ]; then
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-38mm/watchOS/4.3
if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.watchOS-5-1 | wc -l` -eq 1 ]; then
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-Series-4-44mm/watchOS/5.1
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.watchOS-4-4 | wc -l` -eq 1 ]; then
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-38mm/watchOS/4.4
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-38mm/watchOS/4.4
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.watchOS-4-3 | wc -l` -eq 1 ]; then
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-38mm/watchOS/4.3
else
DEFAULT_WATCHOS_SIMULATOR=RxSwiftTest/Apple-Watch-38mm/watchOS/4.2
fi

if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.tvOS-11-3 | wc -l` -eq 1 ]; then
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/11.3
if [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.tvOS-12-1 | wc -l` -eq 1 ]; then
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/12.1
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.tvOS-11-4 | wc -l` -eq 1 ]; then
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/11.4
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/11.4
elif [ `xcrun simctl list runtimes | grep com.apple.CoreSimulator.SimRuntime.tvOS-11-3 | wc -l` -eq 1 ]; then
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/11.3
else
DEFAULT_TVOS_SIMULATOR=RxSwiftTest/Apple-TV-1080p/tvOS/11.0
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [[ `uname` == "Darwin" ]]; then
trap cleanup EXIT
echo "Running linux"
eval $(docker-machine env default)
docker run -it -v `pwd`:/RxSwift swift bash -c "cd /RxSwift; scripts/test-linux.sh"
docker run --rm -it -v `pwd`:/RxSwift swift bash -c "cd /RxSwift; scripts/test-linux.sh"
elif [[ `uname` == "Linux" ]]; then
CONFIGURATIONS=(debug release)

Expand Down
3 changes: 1 addition & 2 deletions scripts/validate-markdown.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ROOT=`pwd`
pushd `npm root -g`
remark -u remark-slug -u remark-validate-links "${ROOT}/*.md"
remark -u remark-slug -u remark-validate-links "${ROOT}/**/*.md"
remark -u remark-slug -u remark-validate-links "${ROOT}/*.md" "${ROOT}/**/*.md" "${ROOT}/.github/ISSUE_TEMPLATE.md" "${ROOT}/RxExample/" "${ROOT}/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift" "${ROOT}/Rx.playground"
popd
35 changes: 15 additions & 20 deletions scripts/validate-podspec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,35 +22,25 @@ fi;

VERSION=`cat RxSwift.podspec | grep -E "s.version\s+=" | cut -d '"' -f 2`
ROOTS=(2/e/c 3/c/1 8/5/5 f/7/9 a/b/1)
ALL_TARGETS=(RxTest RxCocoa RxBlocking RxAtomic RxSwift)
TARGETS=(RxTest RxCocoa RxBlocking RxAtomic RxSwift)

if [ ! -z "$TARGET" ]
then
TARGETS=("$TARGET")
else
TARGETS="${ALL_TARGETS}"
fi

if [ ! -z "$SWIFT_VERSION" ]
then
SWIFT_VERSION="--swift-version=${SWIFT_VERSION}"
fi
SWIFT_VERSION="--swift-version=${SWIFT_VERSION}"

SOURCE_DIR=`pwd`

pushd ~/.cocoapods/repos/master/Specs
for ROOT in ${ROOTS[@]} ; do
for TARGET in ${ALL_TARGETS[@]}
for TARGET_ITERATOR in ${TARGETS[@]}
do
if [ ! -d "${ROOT}/${TARGET}" ]
if [ ! -d "${ROOT}/${TARGET_ITERATOR}" ]
then
continue
fi

mkdir -p ${ROOT}/${TARGET}/${VERSION}
rm ${ROOT}/${TARGET}/${VERSION}/* || echo
cat "${SOURCE_DIR}/$TARGET.podspec" |
sed -E "s/s.source [^\}]+\}/s.source = { :git => 'file:\/\/${ESCAPED_SOURCE}' }/" > ${ROOT}/${TARGET}/${VERSION}/${TARGET}.podspec
mkdir -p ${ROOT}/${TARGET_ITERATOR}/${VERSION}
rm ${ROOT}/${TARGET_ITERATOR}/${VERSION}/* || echo
cat "${SOURCE_DIR}/$TARGET_ITERATOR.podspec" |
sed -E "s/s.source [^\}]+\}/s.source = { :git => 'file:\/\/${ESCAPED_SOURCE}' }/" > ${ROOT}/${TARGET_ITERATOR}/${VERSION}/${TARGET_ITERATOR}.podspec
done
done
popd
Expand All @@ -61,7 +51,12 @@ function validate() {
pod lib lint $PODSPEC --verbose --no-clean --allow-warnings "${SWIFT_VERSION}"
}

for TARGET in ${TARGETS[@]}
for TARGET_ITERATOR in ${TARGETS[@]}
do
validate ${TARGET}.podspec
if [[ "${TARGET}" != "" ]] && [[ "${TARGET}" != "${TARGET_ITERATOR}" ]]
then
continue
fi

validate ${TARGET_ITERATOR}.podspec
done

0 comments on commit fc6030e

Please sign in to comment.