From c58f06179dc54c9b79f67c9dbcc71eb2fe1c8bac Mon Sep 17 00:00:00 2001 From: Takeshi Shimada Date: Fri, 31 Oct 2025 23:54:54 +0900 Subject: [PATCH 1/2] chore: Update CHANGELOG for version 1.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ade22b3..020f05d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From a5a47b644c5c3c15f1d357d2f8ad4763fed51eb4 Mon Sep 17 00:00:00 2001 From: Takeshi Shimada Date: Fri, 31 Oct 2025 23:59:00 +0900 Subject: [PATCH 2/2] docs: Update version to 1.3.1 in README files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 4 ++-- README_jp.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 59dd1c9..b102cc9 100644 --- a/README.md +++ b/README.md @@ -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( @@ -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**. diff --git a/README_jp.md b/README_jp.md index 59f871a..fda94b1 100644 --- a/README_jp.md +++ b/README_jp.md @@ -256,7 +256,7 @@ func handle() -> ActionHandler { ```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( @@ -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`を追加してください。