Skip to content

Commit

Permalink
chore: prepare for the release (#93)
Browse files Browse the repository at this point in the history
* chore: update pom urls

* chore: rename root project

* ci: update branch name in lint.yml

* chore: set the dependency version to 1.0.0-alpha.1

* chore: change the POM name to Analytics Kotlin SDK
  • Loading branch information
1abhishekpandey authored Dec 18, 2024
1 parent a190a49 commit a279add
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Linting Check

on:
push:
branches: ["main", "develop.poc"]
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop.poc"]
branches: ["main", "develop"]
types: ["opened", "reopened", "synchronize"]
workflow_dispatch:

Expand Down
14 changes: 7 additions & 7 deletions buildSrc/src/main/kotlin/RudderStackBuildConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object RudderStackBuildConfig {

object Version {

const val VERSION_NAME = "1.0.0"
const val VERSION_NAME = "1.0.0-alpha.1"
const val VERSION_CODE = "1"
}

Expand All @@ -39,16 +39,16 @@ object RudderStackBuildConfig {

object POM {

const val NAME = "Kotlin-SDK-POC"
const val NAME = "Analytics Kotlin SDK"
const val DESCRIPTION = "RudderStack\'s SDK for android"

const val URL = "https://github.com/rudderlabs/kotlin-sdk-poc"
const val SCM_URL = "https://github.com/rudderlabs/kotlin-sdk-poc/tree/main"
const val SCM_CONNECTION = "scm:git:git://github.com/rudderlabs/kotlin-sdk-poc.git"
const val SCM_DEV_CONNECTION = "scm:git:git://github.com:rudderlabs/kotlin-sdk-poc.git"
const val URL = "https://github.com/rudderlabs/rudder-sdk-kotlin"
const val SCM_URL = "https://github.com/rudderlabs/rudder-sdk-kotlin/tree/main"
const val SCM_CONNECTION = "scm:git:git://github.com/rudderlabs/rudder-sdk-kotlin.git"
const val SCM_DEV_CONNECTION = "scm:git:git://github.com:rudderlabs/rudder-sdk-kotlin.git"

const val LICENCE_NAME = "Elastic License 2.0 (ELv2)"
const val LICENCE_URL = "http://opensource.org/licenses/MIT"
const val LICENCE_URL = "https://github.com/rudderlabs/rudder-sdk-kotlin/blob/main/LICENSE.md"
const val LICENCE_DIST = "repo"

const val DEVELOPER_ID = "Rudderstack"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencyResolutionManagement {
}
}

rootProject.name = "Kotlin SDK POC"
rootProject.name = "Analytics Kotlin SDK"
include(":app")
include(":core")
include(":android")
Expand Down

0 comments on commit a279add

Please sign in to comment.