Skip to content

Commit 24434ce

Browse files
committed
Releasing version 5.5.0-beta.1.
1 parent 42d6ec4 commit 24434ce

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33

44
# Next
55

6+
## [5.5.0-beta.1](https://github.com/MLSDev/TRON/releases/tag/5.5.0-beta.1)
7+
68
### *Introducing support for Swift Concurrency*
79

810
```swift

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import PackageDescription
55
let package = Package(
66
name: "TRON",
77
platforms: [
8-
.iOS(.v10),
9-
.tvOS(.v10),
10-
.macOS(.v10_12),
11-
.watchOS(.v3)
8+
.iOS(.v11),
9+
.tvOS(.v11),
10+
.macOS(.v10_13),
11+
.watchOS(.v4)
1212
],
1313
products: [
1414
.library(name: "TRON", targets: ["TRON"]),

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ TRON is a lightweight network abstraction layer, built on top of [Alamofire](htt
2525
- [x] Modular architecture
2626
- [x] Support for iOS/Mac OS X/tvOS/watchOS/Linux
2727
- [x] Support for CocoaPods/Swift Package Manager
28-
- [x] RxSwift /Combine extensions
29-
- [x] Support for Swift Concurrency
28+
- [x] [RxSwift](https://github.com/MLSDev/TRON#rxswift) / Combine extensions
29+
- [x] Support for [Swift Concurrency](https://github.com/MLSDev/TRON#swift-concurrency)
3030
- [x] [Complete documentation](https://mlsdev.github.io/TRON/)
3131

3232
## Overview

Supporting files/Framework.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.4.1</string>
18+
<string>5.5.0-beta.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

TRON.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'TRON'
3-
s.version = "5.4.1"
3+
s.version = "5.5.0-beta.1"
44
s.license = 'MIT'
55
s.summary = 'Lightweight network abstraction layer, written on top of Alamofire'
66
s.homepage = 'https://github.com/MLSDev/TRON'

0 commit comments

Comments
 (0)