Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to Flow will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.1] - 2025-10-31

### Documentation

- Fixed terminology from "Approachable Concurrency" to "Swift 6 Concurrency" in all documentation files
- Updated README.md and README_jp.md
- Updated Flow.docc documentation

## [1.3.0] - 2025-10-31

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Add Flow to your `Package.swift`:

```swift
dependencies: [
.package(url: "https://github.com/ViewFeature/Flow.git", from: "1.3.0")
.package(url: "https://github.com/ViewFeature/Flow.git", from: "1.3.1")
],
targets: [
.target(
Expand All @@ -276,7 +276,7 @@ targets: [

- Select **File → Add Package Dependencies**
- Enter the URL: `https://github.com/ViewFeature/Flow.git`
- Select version: `1.3.0` or later
- Select version: `1.3.1` or later

**Recommended**: Add `-default-isolation MainActor` to your target's **Build Settings → Other Swift Flags**.

Expand Down
4 changes: 2 additions & 2 deletions README_jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func handle() -> ActionHandler<Action, State, Void> {

```swift
dependencies: [
.package(url: "https://github.com/ViewFeature/Flow.git", from: "1.3.0")
.package(url: "https://github.com/ViewFeature/Flow.git", from: "1.3.1")
],
targets: [
.target(
Expand All @@ -275,7 +275,7 @@ targets: [

- **File → Add Package Dependencies**を選択
- 以下のURLを入力:`https://github.com/ViewFeature/Flow.git`
- バージョンを選択:`1.3.0`以降
- バージョンを選択:`1.3.1`以降

**推奨**: ターゲットの**Build Settings → Other Swift Flags**に`-default-isolation MainActor`を追加してください。

Expand Down
Loading