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

Prepare next-dev phase 22.0.0-SNAPSHOT #297

Merged
merged 1 commit into from
Oct 17, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# :cloud_with_lightning: lighty YANG Validator 21
# :cloud_with_lightning: lighty YANG Validator 22

This tool validates YANG modules using the YANG-Tools parser. If there are any problems parsing the module, it will show the stacktrace with the problem, linking to the corresponding module.

Expand All @@ -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-21.0.0-bin.zip*
The distribution will be stored in the **"target"** directory, as a file called *lighty-yang-validator-22.0.0-SNAPSHOT-bin.zip*

## Run from Distribution

1. Unzip the distribution:

```
unzip lighty-yang-validator-21.0.0-bin.zip
unzip lighty-yang-validator-22.0.0-SNAPSHOT-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>21.0.0</version>
<version>22.0.0-SNAPSHOT</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} 21.0.0\nContact: [email protected]")
.version("Version: ${prog} 22.0.0-SNAPSHOT\nContact: [email protected]")
.description("Yangtools based yang module parser");
private final Format formatter;
private final String[] args;
Expand Down
Loading