Skip to content

Commit

Permalink
Merge pull request #124 from takemikami/prepare-0.1.4
Browse files Browse the repository at this point in the history
prepare-0.1.4
  • Loading branch information
takemikami authored Apr 23, 2020
2 parents a360bfc + bf05d80 commit bdfb6d5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ Use [vscode-rdflint](vscode-rdflint/README.md)
Download from jitpack.

```
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.3/rdflint-0.1.3.jar
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.4/rdflint-0.1.4.jar
```

Run for apply to your RDF files.

```
$ java -jar rdflint-0.1.3.jar -targetdir example/dataset
$ java -jar rdflint-0.1.4.jar -targetdir example/dataset
```

``-targetdir`` parameter is location of target RDF files.
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- run:
name: run rdflint
command: |
RDFLINT_VERSION=0.1.3
RDFLINT_VERSION=0.1.4
wget https://jitpack.io/com/github/imas/rdflint/$RDFLINT_VERSION/rdflint-$RDFLINT_VERSION.jar
java -jar rdflint-$RDFLINT_VERSION.jar
```
Expand All @@ -96,7 +96,7 @@ jobs:
When create a configuration file of rdflint, rdflint provide additional checks. Run with ``-config`` parameter like following.

```
$ java -jar rdflint-0.1.3.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.4.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

``-config`` parameter is location of rdflint configuration file.
Expand Down Expand Up @@ -143,7 +143,7 @@ And run SPARQL query of ``rules-query`` to target file of ``rules-target``. Groo
Run with ``-origindir`` parameter like following.

```
$ java -jar rdflint-0.1.3.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.4.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
```

And check subject and triple, removed from origindir. Its problem report as INFO level.
Expand Down Expand Up @@ -213,7 +213,7 @@ xmlns:imas="https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#"
Run interactive mode with ``-i`` parameter.

```
$ java -jar rdflint-0.1.3.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.4.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

And try to query. Double return to perform query, type ``:exit`` to exit interactive mode.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "rdflint: RDF Linter"
description: "RDFデータのチェックツール「rdflint」の利用ガイド"
lang: ja-JP
google_analytics: UA-150373815-1
RDFLINT_VERSION: 0.1.3
RDFLINT_VERSION: 0.1.4
cookie_consent: |
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/imas/rdflint/RdfLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

public class RdfLint {

public static final String VERSION = "0.1.3";
public static final String VERSION = "0.1.4";
private static final Logger logger = Logger.getLogger(RdfLint.class.getName());

/**
Expand Down
2 changes: 1 addition & 1 deletion vscode-rdflint/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-rdflint",
"displayName": "RDF language support via rdflint",
"version": "0.1.3",
"version": "0.1.4",
"publisher": "takemikami",
"description": "RDF language support via rdflint",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion vscode-rdflint/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Executable
} from 'vscode-languageclient';

const RDFLINT_VER = "0.1.3";
const RDFLINT_VER = "0.1.4";
let client: LanguageClient;

export function activate(context: vscode.ExtensionContext) {
Expand Down

0 comments on commit bdfb6d5

Please sign in to comment.