Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Jul 17, 2020
1 parent e1985d2 commit 133e399
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.0 - Jul 17, 2020

* Making PhDownloadTask's property becomes public.

## 0.2.0 - Jul 17, 2020

* Fix home page url.
Expand Down
2 changes: 1 addition & 1 deletion PhDownloader.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "PhDownloader"
spec.version = "0.2.0"
spec.version = "0.3.0"
spec.summary = "Simple, reactive and functional downloader for iOS Swift with powerful of RxSwift, RxAlamofire"
spec.homepage = "https://github.com/hoc081098/PhDownloader"
spec.license = "MIT (example)"
Expand Down
4 changes: 2 additions & 2 deletions PhDownloader/PhDownloadTask.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import Foundation
/// A model class encapsulates all information about download task
public struct PhDownloadTask: Hashable {
/// The request that executes this task
let request: PhDownloadRequest
public let request: PhDownloadRequest

/// The latest state of download task
let state: PhDownloadState
public let state: PhDownloadState

public init(request: PhDownloadRequest, state: PhDownloadState) {
self.request = request
Expand Down

0 comments on commit 133e399

Please sign in to comment.