Skip to content

Commit

Permalink
Update to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz committed Mar 3, 2019
1 parent 4df17f4 commit 086c481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ Kotlin code generation beyond the string-based versions that exist.
This project has three libraries that are deployed to Maven Central. To simply build the AST from a Kotlin JVM or Java
project, add the following dependency in Gradle:

compile 'com.github.cretz.kastree:kastree-ast-jvm:0.3.0'
compile 'com.github.cretz.kastree:kastree-ast-jvm:0.4.0'

That does not include the parser. To include the parser (which transitively includes the entire Kotlin compiler),
instead use:

compile 'com.github.cretz.kastree:kastree-ast-psi:0.3.0'
compile 'com.github.cretz.kastree:kastree-ast-psi:0.4.0'

While the parser only works from JVM projects, the AST itself (and writers/visitors) can be used from other
multiplatform projects. In the shared/common project, include the common lib:

compile 'com.github.cretz.kastree:kastree-ast-common:0.3.0'
compile 'com.github.cretz.kastree:kastree-ast-common:0.4.0'

### Examples

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {

allprojects {
group 'com.github.cretz.kastree'
version '0.4.0-SNAPSHOT'
version '0.4.0'

repositories {
mavenCentral()
Expand Down

0 comments on commit 086c481

Please sign in to comment.