From fd058044a66012831bfe7cfe654f9efb8f8d47af Mon Sep 17 00:00:00 2001 From: Jaewon Yun Date: Sat, 2 Sep 2023 21:56:59 +0900 Subject: [PATCH 1/2] Update README.md - Removed content that no longer applies. - updated to latest version. --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2c7cff92..f3550773 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,6 @@ **Supported Swift Versions:** Swift 4.2, 5.x -For Swift 3.2 or 4.0 Support use [Release 5.0.0](https://github.com/ReSwift/ReSwift/releases/tag/5.0.0) or earlier. -For Swift 2.2 Support use [Release 2.0.0](https://github.com/ReSwift/ReSwift/releases/tag/2.0.0) or earlier. - # Introduction ReSwift is a [Redux](https://github.com/reactjs/redux)-like implementation of the unidirectional data flow architecture in Swift. ReSwift helps you to separate three important concerns of your app's components: @@ -215,7 +212,7 @@ github "ReSwift/ReSwift" You can install ReSwift via [Accio](https://github.com/JamitLabs/Accio) by adding the following line to your `Package.swift`: ```swift -.package(url: "https://github.com/ReSwift/ReSwift.git", .upToNextMajor(from: "5.0.0")), +.package(url: "https://github.com/ReSwift/ReSwift.git", .upToNextMajor(from: "6.0.0")), ``` Next, add `ReSwift` to your App targets dependencies like so: @@ -241,7 +238,7 @@ import PackageDescription let package = Package( [...] dependencies: [ - .package(url: "https://github.com/ReSwift/ReSwift.git", from: "5.0.0"), + .package(url: "https://github.com/ReSwift/ReSwift.git", from: "6.0.0"), ] ) ``` From 326e39ec50e1b01d68a02f27deee95e7862984b4 Mon Sep 17 00:00:00 2001 From: Christian Tietze Date: Wed, 18 Oct 2023 19:56:07 +0200 Subject: [PATCH 2/2] Update README.md to trigger CI --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index f3550773..f73051eb 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ [![Build Status](https://img.shields.io/travis/ReSwift/ReSwift/master.svg?style=flat-square)](https://travis-ci.org/ReSwift/ReSwift) [![Code coverage status](https://img.shields.io/codecov/c/github/ReSwift/ReSwift.svg?style=flat-square)](http://codecov.io/github/ReSwift/ReSwift) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/ReSwift.svg?style=flat-square)](https://cocoapods.org/pods/ReSwift) [![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/ReSwift/ReSwift/blob/master/LICENSE.md) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/ReSwift/ReSwift/blob/master/LICENSE.md) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg?style=flat-square)](https://houndci.com) -**Supported Swift Versions:** Swift 4.2, 5.x - # Introduction ReSwift is a [Redux](https://github.com/reactjs/redux)-like implementation of the unidirectional data flow architecture in Swift. ReSwift helps you to separate three important concerns of your app's components: