Skip to content

Commit

Permalink
Release 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bguidolim committed Sep 20, 2023
1 parent 10ea405 commit 6416b3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PhoneNumberKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PhoneNumberKit'
s.version = '3.7.0'
s.version = '3.7.1'
s.summary = 'Swift framework for working with phone numbers'
s.description = <<-DESC
A Swift framework for parsing, formatting and validating international phone numbers. Inspired by Google's libphonenumber.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is now the prefe
From Xcode 11+ :

1. Select File > Swift Packages > Add Package Dependency. Enter `https://github.com/marmelroy/PhoneNumberKit.git` in the "Choose Package Repository" dialog.
2. In the next page, specify the version resolving rule as "Up to Next Major" from "3.6.0".
2. In the next page, specify the version resolving rule as "Up to Next Major" from "3.7.0".
3. After Xcode checked out the source and resolving the version, you can choose the "PhoneNumberKit" library and add it to your app target.

For more info, read [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) from Apple.
Expand All @@ -164,7 +164,7 @@ Alternatively, you can also add PhoneNumberKit to your `Package.swift` file:

```swift
dependencies: [
.package(url: "https://github.com/marmelroy/PhoneNumberKit", from: "3.6.0")
.package(url: "https://github.com/marmelroy/PhoneNumberKit", from: "3.7.0")
]
```

Expand All @@ -188,5 +188,5 @@ github "marmelroy/PhoneNumberKit"
### Setting up with [CocoaPods](http://cocoapods.org/?q=PhoneNumberKit)

```ruby
pod 'PhoneNumberKit', '~> 3.6'
pod 'PhoneNumberKit', '~> 3.7'
```

0 comments on commit 6416b3b

Please sign in to comment.