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
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
This repository is a Swift wrapper around `libwebp` for encoding, decoding, and inspecting WebP data.
Use this file as the execution guide for ongoing implementation and maintenance work.

## Current Baseline (2026-02-17)
## Current Baseline (2026-02-19)

- Swift toolchain: 6.2.3 (`.swift-version`), `swift-tools-version: 6.2` (`swiftLanguageModes: [.v6]`)
- Deployment targets: iOS 17+, macOS 14+
- Deployment targets: iOS 13+, macOS 11+
- Dependency:
- [`libwebp-Xcode`](https://github.com/SDWebImage/libwebp-Xcode.git) 1.5.0+
- [`SwiftFormat`](https://github.com/nicklockwood/SwiftFormat.git) via SPM plugin
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import PackageDescription
let package = Package(
name: "WebP",
platforms: [
.iOS(.v17),
.macOS(.v14)
.iOS(.v13),
.macOS(.v11),
],
products: [
.library(name: "WebP", targets: ["WebP"]),
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Swift-WebP provides Swift wrappers around `libwebp` for encoding, decoding, and
- Swift toolchain: 6.2.3 (`.swift-version`)
- Swift language mode: 6
- libwebp: 1.5.0+ (via `libwebp-Xcode`)
- iOS deployment target: 17.0+
- macOS deployment target: 14.0+
- iOS deployment target: 13.0+
- macOS deployment target: 11.0+

## Features

Expand Down