Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.2.8 #99

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2.2.8

* `Version`:
* `Coroutines`: `1.8.0`

## 2.2.7

* `Version`:
Expand Down
12 changes: 6 additions & 6 deletions github_release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ if (new File(projectDir, "secret.gradle").exists()) {
githubRelease {
token "${project.property('GITHUB_RELEASE_TOKEN')}"

owner "InsanusMokrassar"
repo "${rootProject.name}"
owner = "InsanusMokrassar"
repo = "${rootProject.name}"

tagName "v${project.version}"
releaseName "${project.version}"
targetCommitish "${project.version}"
tagName = "v${project.version}"
releaseName = "${project.version}"
targetCommitish = "${project.version}"

body getCurrentVersionChangelog("${project.version}")
body = getCurrentVersionChangelog("${project.version}")
}
}
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android.enableJetifier=false


kotlin_version=1.9.22
kotlin_coroutines_version=1.7.3
kotlin_coroutines_version=1.8.0
kotlin_serialization_version=1.6.2

dokka_version=1.9.10
Expand All @@ -19,7 +19,7 @@ klockVersion=5.3.1

## Github reease

github_release_plugin_version=2.4.1
github_release_plugin_version=2.5.2

## Android

Expand All @@ -36,5 +36,5 @@ androidx_work_version=2.9.0

## Common

version=2.2.7
android_code_version=37
version=2.2.8
android_code_version=38
Loading