Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 18.2.0 #199

Merged
merged 1 commit into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Go to the root directory `/lighty-yang-validator/` and use the command:
mvn clean install
```

The distribution will be stored in the **"target"** directory, as a file called *lighty-yang-validator-18.2.0-SNAPSHOT-bin.zip*
The distribution will be stored in the **"target"** directory, as a file called *lighty-yang-validator-18.2.0-bin.zip*

## Run from Distribution

1. Unzip the distribution:

```
unzip lighty-yang-validator-18.2.0-SNAPSHOT-bin.zip
unzip lighty-yang-validator-18.2.0-bin.zip
```

2. Enter the directory, to which the distribution was extracted to.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<groupId>io.lighty.yang.validator</groupId>
<artifactId>lighty-yang-validator</artifactId>
<version>18.2.0-SNAPSHOT</version>
<version>18.2.0</version>
<name>${project.artifactId}</name>
<description>YANG model validator</description>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/lighty/yang/validator/LyvParameters.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class LyvParameters {

private final ArgumentParser lyvArgumentParser = ArgumentParsers.newFor("LYV").build()
.defaultHelp(true)
.version("Version: ${prog} 18.2.0-SNAPSHOT\nContact: [email protected]")
.version("Version: ${prog} 18.2.0\nContact: [email protected]")
.description("Yangtools based yang module parser");
private final Format formatter;
private final String[] args;
Expand Down
Loading