Skip to content
This repository was archived by the owner on Oct 29, 2021. It is now read-only.

Commit 2c7697d

Browse files
author
Alex Rupérez
committed
Release 0.4.2
1 parent 3c05eb8 commit 2c7697d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Core/NetResponse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public struct NetResponse {
2828

2929
public let userInfo: [AnyHashable : Any]?
3030

31-
public fileprivate(set) weak var netTask: NetTask?
31+
public weak var netTask: NetTask?
3232

3333
let responseObject: Any?
3434

Core/NetTask.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ open class NetTask {
3434

3535
open let identifier: NetTaskIdentifier
3636

37-
open internal(set) var request: NetRequest?
37+
open var request: NetRequest?
3838

3939
open internal(set) var response: NetResponse? {
4040
didSet {

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Intelygenz <[email protected]>
3+
Copyright (c) 2018 Intelygenz <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Net.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,7 @@
15391539
CURRENT_PROJECT_VERSION = "$(DYLIB_CURRENT_VERSION)";
15401540
DEVELOPMENT_TEAM = 3VW789WSMP;
15411541
DYLIB_COMPATIBILITY_VERSION = 0.4.0;
1542-
DYLIB_CURRENT_VERSION = 0.4.1;
1542+
DYLIB_CURRENT_VERSION = 0.4.2;
15431543
ENABLE_STRICT_OBJC_MSGSEND = YES;
15441544
ENABLE_TESTABILITY = YES;
15451545
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -1593,7 +1593,7 @@
15931593
CURRENT_PROJECT_VERSION = "$(DYLIB_CURRENT_VERSION)";
15941594
DEVELOPMENT_TEAM = 3VW789WSMP;
15951595
DYLIB_COMPATIBILITY_VERSION = 0.4.0;
1596-
DYLIB_CURRENT_VERSION = 0.4.1;
1596+
DYLIB_CURRENT_VERSION = 0.4.2;
15971597
ENABLE_STRICT_OBJC_MSGSEND = YES;
15981598
GCC_C_LANGUAGE_STANDARD = gnu99;
15991599
GCC_NO_COMMON_BLOCKS = YES;

NetClient.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 = 'NetClient'
3-
s.version = '0.4.1'
3+
s.version = '0.4.2'
44
s.summary = 'Versatile HTTP networking library written in Swift.'
55

66
s.homepage = 'https://github.com/intelygenz/NetClient-iOS'

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "4.6")),
1010
.package(url: "https://github.com/Moya/Moya.git", .upToNextMajor(from: "10.0")),
1111
.package(url: "https://github.com/intelygenz/Kommander-iOS.git", upToNextMajor: "0.9"),
12-
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "4.0"))
12+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "4.1"))
1313
],
1414
exclude: ["Example", "ExampleUITests", "Pods", "Tests"],
1515
targets: [

0 commit comments

Comments
 (0)