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'
```
------