Skip to content

Commit

Permalink
set version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeshustoff committed Apr 29, 2023
1 parent b68ad0c commit baea1a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dikt-compiler-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

task fatJar(type: Jar) {
baseName = "dikt-compiler-plugin"
version = "$dikt_version"
version = "$VERSION_NAME"
manifest {
attributes 'Implementation-Title': 'Gradle Jar File Example',
'Implementation-Version': version,
Expand All @@ -32,7 +32,7 @@ shadowJar {
inheritFrom project.tasks.fatJar.manifest
}
baseName = "dikt-compiler-plugin"
version = "$dikt_version"
version = "$VERSION_NAME"
classifier = null
}

Expand Down
4 changes: 2 additions & 2 deletions dikt-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.gradle.plugin-publish'

group = "io.github.sergeshustoff.dikt"
archivesBaseName = "dikt-gradle-plugin"
version = "$dikt_version"
version = "$VERSION_NAME"

repositories {
mavenLocal()
Expand All @@ -20,7 +20,7 @@ gradlePlugin {
diktPlugin {
id = "io.github.sergeshustoff.dikt"
displayName = 'DI.kt'
version = "$dikt_version"
version = "$VERSION_NAME"
description = 'Simple DI for kotlin multiplatform with depdendency graph validation in compile-time.'
implementationClass = "dev.shustoff.dikt.gradle.DiktGradlePlugin"
tags.set(['tags', 'kotlin', 'multiplatform', 'DI'])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DiktGradlePlugin : KotlinCompilerPluginSupportPlugin {
}

companion object {
private const val version = "1.1.0-alpha6"
private const val version = "1.1.0"
}
}

Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ kotlin.js.webpack.major.version=5
kotlin.compiler.execution.strategy=in-process
org.gradle.jvmargs=-Xmx3g

kotlin_version=1.8.20
kotlin_version=1.8.21

# don't forget to update DiktGradlePlugin
dikt_version=1.1.0-alpha6
VERSION_NAME=1.1.0-alpha6
VERSION_NAME=1.1.0
dikt_sample_version=1.1.0-alpha6

GROUP=io.github.sergeshustoff.dikt
Expand Down

0 comments on commit baea1a8

Please sign in to comment.