Skip to content

Commit f882efb

Browse files
patro85patrick-mayoclaude
authored
chore: prepare 1.5.0 release (#10)
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: gambit1185_church <patrickmayo@churchofjesuschrist.org> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent eee58ae commit f882efb

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

AlertToast.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
1616
#
1717

1818
spec.name = "AlertToast"
19-
spec.version = "1.4.0"
19+
spec.version = "1.5.0"
2020
spec.summary = "Create Apple-like alerts & toasts using SwiftUI"
2121

2222
# This description is used to generate tags and improve search results.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Currently in SwiftUI, the only way to inform the user about some process that fi
2424

2525
`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.
2626

27-
<img src="https://img.shields.io/badge/BUILD-1.4.0-green?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/PLATFORM-IOS%20|%20MACOS%20|%20VISIONOS-lightgray?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/LICENSE-MIT-lightgray?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/MADE WITH-SWIFTUI-orange?style=for-the-badge" />
27+
<img src="https://img.shields.io/badge/BUILD-1.5.0-green?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/PLATFORM-IOS%20|%20MACOS%20|%20VISIONOS-lightgray?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/LICENSE-MIT-lightgray?style=for-the-badge" />&nbsp;&nbsp;&nbsp;<img src="https://img.shields.io/badge/MADE WITH-SWIFTUI-orange?style=for-the-badge" />
2828

2929
* Built with pure SwiftUI.
3030
* 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
6262

6363
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.
6464

65-
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`):
65+
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`):
6666

6767
```
6868
https://github.com/patro85/AlertToast.git
@@ -72,7 +72,7 @@ Or add it directly to your `Package.swift`:
7272

7373
```swift
7474
dependencies: [
75-
.package(url: "https://github.com/patro85/AlertToast.git", from: "1.4.0")
75+
.package(url: "https://github.com/patro85/AlertToast.git", from: "1.5.0")
7676
]
7777
```
7878

@@ -83,7 +83,7 @@ dependencies: [
8383
This fork is not published to the CocoaPods trunk. Reference it directly from Git in your `Podfile`:
8484

8585
```ruby
86-
pod 'AlertToast', :git => 'https://github.com/patro85/AlertToast.git', :tag => '1.4.0'
86+
pod 'AlertToast', :git => 'https://github.com/patro85/AlertToast.git', :tag => '1.5.0'
8787
```
8888

8989
------

0 commit comments

Comments
 (0)