Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module ietf-yang-schema-comparison {
of the schema nodes are optional and describe changes in all the
statements of a single YANG module.

Copyright (c) 2025 IETF Trust and the persons identified as
Copyright (c) 2026 IETF Trust and the persons identified as
authors of the code. All rights reserved.

Redistribution and use in source and binary forms, with
Expand All @@ -69,7 +69,7 @@ module ietf-yang-schema-comparison {
// RFC Ed.: replace XXXX (inc above) with actual RFC number and
// remove this note.

revision 2025-10-20 {
revision 2026-02-11 {
description
"Initial revision.";
reference
Expand Down
4 changes: 2 additions & 2 deletions src/tree_schema.c
Original file line number Diff line number Diff line change
Expand Up @@ -1400,8 +1400,8 @@ lys_compare(const struct ly_ctx *ctx, const struct lys_module *src_mod, const st
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not found.");
rc = LY_ENOTFOUND;
goto cleanup;
} else if (!cmp_mod->revision || strcmp(cmp_mod->revision, "2025-10-20")) {
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not in the expected revision \"2025-10-20\".");
} else if (!cmp_mod->revision || strcmp(cmp_mod->revision, "2026-02-11")) {
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not in the expected revision \"2026-02-11\".");
rc = LY_ENOTFOUND;
goto cleanup;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"module": "ietf-yang-schema-comparison",
"revision": "2025-10-20",
"revision": "2026-02-11",
"enabled-feature": [
"parsed-schema"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"module": "ietf-yang-schema-comparison",
"revision": "2025-10-20",
"revision": "2026-02-11",
"enabled-feature": [
"parsed-schema"
]
Expand Down
2 changes: 1 addition & 1 deletion tests/utests/schema_comparison/bc/7 must/must_cmp.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"module": "ietf-yang-schema-comparison",
"revision": "2025-10-20",
"revision": "2026-02-11",
"enabled-feature": [
"parsed-schema"
]
Expand Down
2 changes: 1 addition & 1 deletion tests/utests/schema_comparison/bc/8 when/when_cmp.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"module": "ietf-yang-schema-comparison",
"revision": "2025-10-20",
"revision": "2026-02-11",
"enabled-feature": [
"parsed-schema"
]
Expand Down
2 changes: 1 addition & 1 deletion tests/utests/schema_comparison/test_schema_comparison.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ setup_f(void **state)
}

/* load ietf-schema-comparison into both contexts, the module is imported */
if (ly_in_new_filepath(TESTS_SRC "/../modules/ietf-yang-schema-comparison@2025-10-20.yang", 0, &in)) {
if (ly_in_new_filepath(TESTS_SRC "/../modules/ietf-yang-schema-comparison@2026-02-11.yang", 0, &in)) {
return 1;
}
if (lys_parse(st->ctx1, in, LYS_IN_YANG, feats, NULL)) {
Expand Down