Replace LOGGER/logger/log by LOG
[yangtools.git] / yang / yang-parser-impl / src / test / resources / semantic-version / position / position-tail / semantic-version.yang
1 module semantic-version {
2     namespace "urn:opendaylight:yang:extension:semantic-version";
3     prefix sv;
4     yang-version 1;
5
6     revision 2016-02-02 {
7         description "Initial verison";
8     }
9
10     extension semantic-version {
11         argument "semantic-version" {
12             yin-element false;
13         }
14         description
15             "The OpenConfig version number for the module. This is
16             expressed as a semantic version number of the form:
17               x.y.z
18             where:
19               * x corresponds to the major version,
20               * y corresponds to a minor version,
21               * z corresponds to a patch version.
22             This version corresponds to the model file within which it is
23             defined, and does not cover the whole set of OpenConfig models.
24             Where several modules are used to build up a single block of
25             functionality, the same module version is specified across each
26             file that makes up the module.
27
28             A major version number of 0 indicates that this model is still
29             in development (whether within OpenConfig or with industry
30             partners), and is potentially subject to change.
31
32             Following a release of major version 1, all modules will
33             increment major revision number where backwards incompatible
34             changes to the model are made.
35
36             The minor version is changed when features are added to the
37             model that do not impact current clients use of the model.
38
39             The patch-level version is incremented when non-feature changes
40             (such as bugfixes or clarifications to human-readable
41             descriptions that do not impact model functionality) are made
42             that maintain backwards compatibility.
43
44             The version number is stored in the module meta-data.";
45     }
46
47     sv:semantic-version "0.0.1";
48 }