From 7a90e140f3c88c5aeb362fb982059ea1143c2f08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mate=CC=8Cj=20Kas=CC=8Cpar=20Jira=CC=81sek?= Date: Mon, 1 Nov 2021 13:42:42 +0100 Subject: [PATCH 1/3] Update workflow names and badges --- .github/workflows/ubuntu-latest.yml | 2 +- README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-latest.yml b/.github/workflows/ubuntu-latest.yml index 7a01d1a..b1b80df 100644 --- a/.github/workflows/ubuntu-latest.yml +++ b/.github/workflows/ubuntu-latest.yml @@ -1,4 +1,4 @@ -name: Test – Ubuntu +name: Ubuntu on: push: diff --git a/README.md b/README.md index 96104b6..db07e33 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ ![Cocoapods platforms](https://img.shields.io/cocoapods/p/FTAPIKit) ![License](https://img.shields.io/cocoapods/l/FTAPIKit) -![macOS](https://github.com/futuredapp/FTAPIKit/actions/workflows/macos-latest.yml/badge.svg?branch=main) +![macOS 11](https://github.com/futuredapp/FTAPIKit/actions/workflows/macos-11.yml/badge.svg?branch=main) +![macOS 10.15](https://github.com/futuredapp/FTAPIKit/actions/workflows/macos-10.15.yml/badge.svg?branch=main) ![Ubuntu](https://github.com/futuredapp/FTAPIKit/actions/workflows/ubuntu-latest.yml/badge.svg?branch=main) Declarative and generic REST API framework using Codable. From 7efb30d482df613d1d6aa2978591040c22007b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mate=CC=8Cj=20Kas=CC=8Cpar=20Jira=CC=81sek?= Date: Mon, 1 Nov 2021 13:42:55 +0100 Subject: [PATCH 2/3] Fix README image reference --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db07e33..c36b4da 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ If some advanced features are required then we recommend implementing API client This client should encapsulate logic which is not provided by this framework (like signing authorized endpoints or conforming to `URLSessionDelegate`). -![Architecture](Sources/FTAPIKit/Documentation.docc/Resources/Architecture.svg) +![Architecture](Sources/FTAPIKit/Documentation.docc/Resources/Architecture.png) This package contains predefined `Endpoint` protocols. Use cases like multipart upload, automatic encoding/decoding From 8c40455e7b0b39d322743cc6911abc2c23e4603f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mate=CC=8Cj=20Kas=CC=8Cpar=20Jira=CC=81sek?= Date: Mon, 1 Nov 2021 13:43:17 +0100 Subject: [PATCH 3/3] Increment version to 1.4.0 --- FTAPIKit.podspec | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FTAPIKit.podspec b/FTAPIKit.podspec index 3a30d53..7cb119e 100644 --- a/FTAPIKit.podspec +++ b/FTAPIKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FTAPIKit" - s.version = "1.3.0" + s.version = "1.4.0" s.summary = "Declarative, generic and protocol-oriented REST API framework using URLSession and Codable" s.description = <<-DESC Protocol-oriented framework for communication with REST APIs. diff --git a/README.md b/README.md index c36b4da..a6ec23c 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ When using Swift package manager install using Xcode 11+ or add following line to your dependencies: ```swift -.package(url: "https://github.com/futuredapp/FTAPIKit.git", from: "1.3.0") +.package(url: "https://github.com/futuredapp/FTAPIKit.git", from: "1.4.0") ``` When using CocoaPods add following line to your `Podfile`: ```ruby -pod 'FTAPIKit', '~> 1.3' +pod 'FTAPIKit', '~> 1.4' ``` ## Features