From 6e6606009d7522dd385a878c0fa6663472a4d541 Mon Sep 17 00:00:00 2001 From: Viktor G Date: Wed, 13 Nov 2024 03:00:34 +0100 Subject: [PATCH] Update pod specs --- Networking-Swift.podspec | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Networking-Swift.podspec b/Networking-Swift.podspec index b3af904..0fa325d 100644 --- a/Networking-Swift.podspec +++ b/Networking-Swift.podspec @@ -1,9 +1,9 @@ Pod::Spec.new do |s| s.name = 'Networking-Swift' - s.version = '0.8.9' + s.version = '0.9.0' s.summary = 'Networking is a lightweight and powerful HTTP network framework written in Swift' s.description = <<-DESC - Networking is a lightweight and powerful HTTP network framework written in Swift. Features includes but are not limited to; easily build server configurations and requests for any API, clear request and response logging, URL query and JSON parameter encoding, authentication with Basic and Bearer token and Combine Support. + Networking is a lightweight and powerful async / await HTTP network framework written in Swift. Features includes but are not limited to; easily build server configurations and requests for any API, clear request and response logging, URL query and JSON parameter encoding, authentication with Basic and Bearer token. DESC s.homepage = 'https://github.com/brillcp/Networking' diff --git a/README.md b/README.md index 268d90a..0c99ef3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![swift](https://img.shields.io/badge/Swift-5.4%2B-orange) ![platforms](https://img.shields.io/badge/Platforms-iOS%20macOS%20tvOS%20watchOS-blue) [![spm](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-green)](#swift-package-manager) -[![pod](https://img.shields.io/badge/pod-v0.8.9-orange)](#cocoapods) +[![pod](https://img.shields.io/badge/pod-v0.9.0-orange)](#cocoapods) [![license](https://img.shields.io/github/license/brillcp/networking)](/LICENSE) ![stars](https://img.shields.io/github/stars/brillcp/networking?style=social) @@ -296,7 +296,7 @@ The Swift Package Manager is a tool for automating the distribution of Swift cod Once you have your Swift package set up, adding Networking as a dependency is as easy as adding it to the dependencies value of your Package.swift. ``` dependencies: [ - .package(url: "https://github.com/brillcp/Networking.git", .upToNextMajor(from: "0.8.9")) + .package(url: "https://github.com/brillcp/Networking.git", .upToNextMajor(from: "0.9.0")) ] ```