Skip to content

Commit

Permalink
Merge pull request #94 from futuredapp/release/1.4.0
Browse files Browse the repository at this point in the history
Release 1.4.0
  • Loading branch information
mkj-is authored Nov 1, 2021
2 parents 0bf9ecb + 8c40455 commit 5116f4c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-latest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test – Ubuntu
name: Ubuntu

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion FTAPIKit.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -19,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
Expand All @@ -45,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
Expand Down

0 comments on commit 5116f4c

Please sign in to comment.