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
2 changes: 1 addition & 1 deletion AlertToast.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<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" />
<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" />

* Built with pure SwiftUI.
* 3 display modes: `Alert` (pop at the center), `HUD` (drop from the top), and `Banner` (pop/slide from the bottom).
Expand Down Expand Up @@ -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
Expand All @@ -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")
]
```

Expand All @@ -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'
```

------
Expand Down