Skip to content

Commit fa7086e

Browse files
committed
Update version to 0.8.0
1 parent 30e72d0 commit fa7086e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
setup:
77
runs-on: ubuntu-latest
8-
container: voudy/astminer
8+
container: voudy/astminer:0.8.0
99

1010
steps:
1111
- uses: actions/checkout@v2

.space.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ job("Release") {
77
}
88
}
99

10-
container(image="voudy/astminer") {
10+
container(image="voudy/astminer:0.8.0") {
1111
env["PUBLISH_USER"] = Secrets("publish_user")
1212
env["PUBLISH_PASSWORD"] = Secrets("publish_password")
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![JetBrains Research](https://jb.gg/badges/research.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
2-
![astminer version](https://img.shields.io/badge/astminer-v0.7.0-blue)
2+
![astminer version](https://img.shields.io/badge/astminer-v0.8.0-blue)
33

44
# `astminer`
55
A library for mining [path-based representations of code](https://arxiv.org/pdf/1803.09544.pdf) and more

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import tanvd.kosogor.proxy.shadowJar
22

33
group = "io.github.vovak"
4-
version = "0.7.0"
4+
version = "0.8.0"
55

66
plugins {
77
id("java")

configs/gumtree_java_ast.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# input directory (path to project)
2-
inputDir: src/test/resources/
2+
inputDir: src/test/resources/examples
33
# output directory
44
outputDir: output
55

@@ -22,3 +22,4 @@ label:
2222
# save to disk ASTs in the JSON format
2323
storage:
2424
name: json AST
25+
withPaths: true

0 commit comments

Comments
 (0)