Skip to content

Commit

Permalink
release version 1.4.0
Browse files Browse the repository at this point in the history
with kotlin 1.6.10
coroutines-android 1.6.0
  • Loading branch information
Rasalexman committed Feb 24, 2022
1 parent 597ba5a commit 8a78af1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/appdependencies/Builds.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object Builds {
}

object Manager {
const val VERSION_NAME = "1.3.9"
const val VERSION_NAME = "1.4.0"
}
}

6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/appdependencies/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package appdependencies

object Versions {

const val gradle = "7.0.3"
const val kotlin = "1.6.0"
const val gradle = "7.0.4"
const val kotlin = "1.6.10"

const val appcompat = "1.3.1"
const val appCoreX = "1.6.0"
const val constraintLayout = "2.1.0"
const val kotlinCoroutinesVersion = "1.6.0-RC"
const val kotlinCoroutinesVersion = "1.6.0"

/* test */
const val junit = "4.13"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABL
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@file:Suppress("unused")
package com.rasalexman.coroutinesmanager

import kotlinx.coroutines.Job
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@file:Suppress("SuspendFunctionOnCoroutineScope")
@file:Suppress("SuspendFunctionOnCoroutineScope", "unused")

package com.rasalexman.coroutinesmanager

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABL
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@file:Suppress("unused")
package com.rasalexman.coroutinesmanager

import kotlinx.coroutines.Job
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@file:Suppress("SuspendFunctionOnCoroutineScope")
@file:Suppress("SuspendFunctionOnCoroutineScope", "unused")

package com.rasalexman.coroutinesmanager

Expand Down Expand Up @@ -293,7 +293,7 @@ suspend fun <T> IAsyncTasksManager.doTryFinallyAsync(
/**
* Doing some async work with tryFinally block. If there is an error occurs
* It will be throwed and passed into [finallyBlock] as parameter
* using withContext([com.rasalexman.coroutinesmanager.IAsyncTasksManager.asyncCoroutineContext])
* using withContext([com.rasalexman.coroutinesmanager.IAsyncTasksManager.coroutineContext])
*
* @param tryBlock - main working block
* @param finallyBlock - there is a block where exception can exist as param `it:Throwable?`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@file:Suppress("unused")

package com.rasalexman.coroutinesmanager

import kotlinx.coroutines.*
Expand Down

0 comments on commit 8a78af1

Please sign in to comment.