From 85c337d21b658ea9354be913264455331de64fde Mon Sep 17 00:00:00 2001 From: Takeshi Shimada Date: Thu, 30 Oct 2025 22:26:32 +0900 Subject: [PATCH 1/2] chore: Prepare for 1.1.1 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update CHANGELOG.md with version 1.1.1 changes: - Bug fix: SwiftLint modifier_order violation in LocationService - Documentation improvements: Removed subjective expressions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a68e3..aff6e0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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.1.1] - 2025-10-30 + +### Bug Fixes + +- **SwiftLint compliance**: Fixed `modifier_order` violation in LocationService initializer + - Corrected modifier order from `nonisolated override` to `override nonisolated` + - Ensures CI SwiftLint checks pass with `--strict` mode + - Follows Swift's modifier ordering rules as specified in Swift Language Guide + +### Documentation + +- **Improved clarity**: Removed subjective and exaggerated expressions from documentation + - Updated CoreConcepts.md for more objective technical descriptions + - Simplified Flow.md introduction for better clarity + - Improved README.md to focus on factual feature descriptions + - Enhanced professional tone across all documentation + ## [1.1.0] - 2025-10-27 ### Features From f30606986051244a006bcb3ec141dc97ae9b56fc Mon Sep 17 00:00:00 2001 From: Takeshi Shimada Date: Thu, 30 Oct 2025 22:28:10 +0900 Subject: [PATCH 2/2] docs: Update version references to 1.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update version numbers in installation instructions: - README.md: Package.swift and Xcode instructions - README_jp.md: パッケージ依存関係とXcode手順 🤖 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 3b97d5b..4988314 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.1.0") + .package(url: "https://github.com/ViewFeature/Flow.git", from: "1.1.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.1.0` or later +- Select version: `1.1.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 ef17fb7..35f6d6b 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.1.0") + .package(url: "https://github.com/ViewFeature/Flow.git", from: "1.1.1") ], targets: [ .target( @@ -275,7 +275,7 @@ targets: [ - **File → Add Package Dependencies**を選択 - 以下のURLを入力:`https://github.com/ViewFeature/Flow.git` -- バージョンを選択:`1.1.0`以降 +- バージョンを選択:`1.1.1`以降 **推奨**: ターゲットの**Build Settings → Other Swift Flags**に`-default-isolation MainActor`を追加してください。