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

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alexruperez committed Mar 1, 2018
1 parent 0c2d103 commit 76579a9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release 1.0

- [x] General retry policy.
- [x] New API naming.

# Release 0.9.3

- [x] Canceled (US English) Kommand state becomes cancelled (British English).
Expand Down
4 changes: 2 additions & 2 deletions Kommander.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Kommander'
s.version = '0.9.3'
s.summary = 'A command pattern implementation written in Swift 4'
s.version = '1.0'
s.summary = 'A command pattern implementation written in Swift'

s.homepage = 'https://github.com/intelygenz/Kommander-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
8 changes: 4 additions & 4 deletions Kommander.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -989,8 +989,8 @@
CURRENT_PROJECT_VERSION = "$(DYLIB_CURRENT_VERSION)";
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 3VW789WSMP;
DYLIB_COMPATIBILITY_VERSION = 0.9.3;
DYLIB_CURRENT_VERSION = 0.9.3;
DYLIB_COMPATIBILITY_VERSION = 1.0;
DYLIB_CURRENT_VERSION = 1.0;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down Expand Up @@ -1061,8 +1061,8 @@
CURRENT_PROJECT_VERSION = "$(DYLIB_CURRENT_VERSION)";
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 3VW789WSMP;
DYLIB_COMPATIBILITY_VERSION = 0.9.3;
DYLIB_CURRENT_VERSION = 0.9.3;
DYLIB_COMPATIBILITY_VERSION = 1.0;
DYLIB_CURRENT_VERSION = 1.0;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ Inspired on the Java library [**Kommander**](https://github.com/Wokdsem/Kommande
- [x] Execute sequential or concurrent closures
- [x] Execute DispatchWorkItem
- [x] Kommand state
- [x] iOS compatible
- [x] watchOS compatible
- [x] tvOS compatible
- [x] macOS compatible
- [x] Swift 4 version
- [x] Swift 3 version
- [x] Swift 2 version
- [x] Objective-C version
Expand Down Expand Up @@ -150,6 +152,8 @@ Kommander(deliverer: Dispatcher = .current, executor: Dispatcher = .default)
Kommander(deliverer: Dispatcher = .current, name: String, qos: QualityOfService = .default, maxConcurrentOperations: Int = .default)
```

##### Shortcuts:

```swift
Kommander.main

Expand All @@ -176,6 +180,8 @@ MainDispatcher()
Dispatcher(name: String, qos: QualityOfService = .default, maxConcurrentOperations: Int = .default)
```

##### Shortcuts:

```swift
Dispatcher.main

Expand Down

0 comments on commit 76579a9

Please sign in to comment.