-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGELOG
98 lines (74 loc) · 2.5 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Version 1.4.10
- Android init method renamed to initAndroidDispatchQueues()
Version 1.4.9
- Added new FlatMap methods
- Memory and cpu performance improvements
- Api improvements
Version 1.4.8
- Remove ambiguous start method
Version 1.4.7
- Fixed issue where a cancelled queue would throw exceptions
Version 1.4.6
- Added new zip method that takes in a list of dispatchQueues.
- Added new async and post methods on DispatchQueue interface for direct executions.
- Added new computation queue.
- Added new start method on DispatchQueue
Version 1.4.5
- Memory, performance improvements and bug fixes.
Version 1.4.4
- Initialize android dispatch queues on app launch via DispatchQueueAndroid.initAndroidDispatchQueues()
Version 1.4.3
- Proguard fixes
- Fixed thread not sleeping issues when using DefaultThreadHandler class.
Version 1.4.2
- Thread bug fix. Better logging.
Version 1.4.1
- Memory, performance improvements and bug fixes.
Version 1.4.0
- Refactored library. See readme
- Memory improvements and bug fixes.
Version 1.3.1
- Added methods
Version 1.3.0
- Renamed Dispatch to DispatchQueue
- Renamed DispatchObserver and DispatchObservable to DispatchQueueObserver and DispatchQueueObservable
- Performance improvements. Document updates
Version 1.2.1
- Newly created queues now return Void? instead of kotlin.Unit
- DispatchQueues are now synchronized.
Version 1.2.0
- Android Specific Classes are now in a separate package and will require the com.tonyodev.dispatch:android:x.x.x" to be added to build files.
- Improvements to using DispatchObservable
- Removed renamed zipWith methods on Dispatch to zip
- Removed zipAny method from Dispatch interface.
- Lots of Kotlin friendly goodies.
- Performance and Memory Improvements.
Version 1.0.9
- Improvements to using DispatchObservable
Version 1.0.8
- Added ErrorHandler for DispatchCallAdapterFactory
Version 1.0.7
- Renamed transform method to map
Version 1.0.6
- Cancel fixes
Version 1.0.5
- Added new transform method on Dispatch
- Added new class LifecycleDispatchQueueController
Version 1.0.4
- Bug Fixes
- Renamed many of the methods.
- Updated Documentation
- Performance improvements
Version 1.0.3
- Added new static methods for Dispatcher with namedDispatches.
- Added new ThreadType BACKGROUND1 secondary background handler
Version 1.0.2
- Small Fixes
- Added cancel on complete method
- Added DispatchObserver
Version 1.0.1
- Combine method renamed to zipWith.
- Added new ZipWithAny method.
- Bug Fixes and performance improvements.
Version 1.0.0
- Initial Version