Skip to content

Commit

Permalink
✨ prepare for next development version
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Jan 11, 2022
1 parent 04d602b commit 1255202
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

val daggerVersion by extra("2.39.1")
val stackzyVersion by extra("1.1.3") // TODO : Change in App.kt also
val stackzyVersion by extra("1.2.0") // TODO : Change in App.kt also

group = "com.theapache64"
version = stackzyVersion
Expand Down
2 changes: 1 addition & 1 deletion data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.theapache64.stackzy"
version = "1.1.3"
version = "1.2.0"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class NetworkModule {
)
.addForm(
TABLE_UNTRACKED_LIBS,
"https://docs.google.com/forms/d/e/1FAIpQLSdWuRkjXqBkL-w5NfktA_ju_sI2bJTDVb4LoYco4mxEpskU9g/viewform?usp=sf_link"
"https://docs.google.com/forms/d/e/1FAIpQLSdWuRkjXqBkL-w5NfktA_ju_sI2bJTDVb4LoYco4mxEpskU9g/viewform?usp=sf_link", // TODO: Change this
)
.addSheet(
sheetName = TABLE_RESULTS,
Expand All @@ -73,7 +73,7 @@ class NetworkModule {
)
.addForm(
endPoint = TABLE_RESULTS,
formLink = "https://docs.google.com/forms/d/e/1FAIpQLSdiTZz47N2FHUXLSvsdzAxVRKqzWq30xjkpCOQugKbHLJuRGg/viewform?usp=sf_link"
formLink = "https://docs.google.com/forms/d/e/1FAIpQLSdTiqu2iS-dRLV106uvcKnrZUPnX2x-qF1FlWUjxsfmkNJ0-A/viewform?usp=sf_link"
)
.build()
}
Expand All @@ -100,7 +100,7 @@ class NetworkModule {

return Retrofit.Builder()
.client(okHttpClient)
.baseUrl("https://docs.google.com/spreadsheets/d/1KBxVO5tXySbezBr-9rb2Y3qWo5PCMrvkD1aWQxZRepI/")
.baseUrl("https://docs.google.com/spreadsheets/d/1DZ_s2aSJZ4WsgsfZnVQIB1us7Dq7WfxDdpbvLo07pMg/")
.addConverterFactory(MoshiConverterFactory.create(moshi))
.addCallAdapterFactory(FlowResourceCallAdapterFactory())
.build()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/theapache64/stackzy/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fun main() {
// Parsing application arguments
val appArgs = AppArgs(
appName = "Stackzy",
version = "v1.1.3",
version = "v1.2.0",
versionCode = 20210724
)

Expand Down

0 comments on commit 1255202

Please sign in to comment.