From 45610a2c0ea4adfe573456483a9f0936c9a742c6 Mon Sep 17 00:00:00 2001 From: gambit1185_church Date: Thu, 4 Jun 2026 11:33:41 -0600 Subject: [PATCH] chore: prepare 1.5.0 release Bump the version to 1.5.0 in the podspec and README (badge + SwiftPM and CocoaPods install snippets). Since 1.4.0 this release adds the custom-view display mode (DisplayMode.custom, #8) and fixes the animated checkmark drawing mirrored under right-to-left layout (#9). Co-Authored-By: Claude Opus 4.8 (1M context) --- AlertToast.podspec | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AlertToast.podspec b/AlertToast.podspec index 7187bf4..2593785 100644 --- a/AlertToast.podspec +++ b/AlertToast.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |spec| # spec.name = "AlertToast" - spec.version = "1.4.0" + spec.version = "1.5.0" spec.summary = "Create Apple-like alerts & toasts using SwiftUI" # This description is used to generate tags and improve search results. diff --git a/README.md b/README.md index 4b152e2..29ab89f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Currently in SwiftUI, the only way to inform the user about some process that fi `AlertToast` is an open-source library to use with SwiftUI. It lets you present popups that don't need any user action to dismiss or to validate. Some great usage examples: `Message Sent`, `Poor Network Connection`, `Profile Updated`, `Logged In/Out`, `Favorited`, `Loading`, and so on. -          +          * Built with pure SwiftUI. * 3 display modes: `Alert` (pop at the center), `HUD` (drop from the top), and `Banner` (pop/slide from the bottom). @@ -62,7 +62,7 @@ Currently in SwiftUI, the only way to inform the user about some process that fi The [Swift Package Manager](https://swift.org/package-manager/) is a tool for managing the distribution of Swift code, integrated with the Swift build system. -In Xcode, go to **File → Add Package Dependencies…**, paste the repository URL, and choose a version rule (e.g. *Up to Next Major* from `1.4.0`): +In Xcode, go to **File → Add Package Dependencies…**, paste the repository URL, and choose a version rule (e.g. *Up to Next Major* from `1.5.0`): ``` https://github.com/patro85/AlertToast.git @@ -72,7 +72,7 @@ Or add it directly to your `Package.swift`: ```swift dependencies: [ - .package(url: "https://github.com/patro85/AlertToast.git", from: "1.4.0") + .package(url: "https://github.com/patro85/AlertToast.git", from: "1.5.0") ] ``` @@ -83,7 +83,7 @@ dependencies: [ This fork is not published to the CocoaPods trunk. Reference it directly from Git in your `Podfile`: ```ruby -pod 'AlertToast', :git => 'https://github.com/patro85/AlertToast.git', :tag => '1.4.0' +pod 'AlertToast', :git => 'https://github.com/patro85/AlertToast.git', :tag => '1.5.0' ``` ------