Skip to content

Commit

Permalink
Bump version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
p4checo committed Apr 26, 2019
1 parent e69e257 commit c93c76c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion APNSubGroupOperationQueue.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "APNSubGroupOperationQueue"
s.version = "3.0.0"
s.version = "4.0.0"
s.summary = "Serial processing sub groups inside your concurrent NSOperationQueue."
s.description = "APNSubGroupOperationQueue is a µFramework consisting of `NSOperationQueue` subclasses (Swift & Obj-C) which allow scheduling operations in serial subgroups inside a concurrent queue"

Expand Down
29 changes: 18 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let bOps = subGroupQueue["B"]
let cOps = subGroupQueue.subGroupOperations(forKey: "C")
```

#### Multiple SubGroup Key types (must conform to `AnyHashable`)
#### Multiple SubGroup Key types (via `AnyHashable`)
```swift
@import APNSubGroupOperationQueue

Expand Down Expand Up @@ -105,7 +105,13 @@ NSDate *date = [NSDate date];
```
## Compatibility
### 3.x (current)
### 4.x (current)
- iOS 10.0+, macOS 10.12, tvOS 10.0+, watchOS 3.0+
- Xcode 10.2+
- Swift 5.0
### 3.x
- iOS 10.0+, macOS 10.12, tvOS 10.0+, watchOS 3.0+
- Xcode 10
Expand All @@ -114,15 +120,16 @@ NSDate *date = [NSDate date];
### 2.x
- iOS 8.0+, macOS 10.9+, tvOS 9.0+, watchOS 2.0+
- 2.1.0
+ Xcode 8
+ Swift 3
- 2.2.0
+ Xcode 9
+ Swift 4.0
- 2.3.0
+ Xcode 9.4
+ Swift 4.1
- 2.2.0
+ Xcode 9
+ Swift 4.0
- 2.1.0
+ Xcode 8
+ Swift 3
## Integration
Expand All @@ -131,7 +138,7 @@ Add APNSubGroupOperationQueue to your `Podfile` and run `pod install`:
```ruby
# CocoaPods
pod 'APNSubGroupOperationQueue', '~> 3.0'
pod 'APNSubGroupOperationQueue', '~> 4.0'
```

### Carthage
Expand All @@ -140,7 +147,7 @@ Add APNSubGroupOperationQueue to your `Cartfile` (package dependency) or `Cartfi
(development dependency):

```
github "p4checo/APNSubGroupOperationQueue" ~> 3.0
github "p4checo/APNSubGroupOperationQueue" ~> 4.0
```

### Swift Package Manager
Expand All @@ -153,7 +160,7 @@ import PackageDescription
let package = Package(
name: "HelloWorld",
dependencies: [
.Package(url: "https://github.com/p4checo/APNSubGroupOperationQueue.git", majorVersion: 3),
.Package(url: "https://github.com/p4checo/APNSubGroupOperationQueue.git", majorVersion: 4),
]
)
```
Expand Down

0 comments on commit c93c76c

Please sign in to comment.