From 2d47ea9862ddaa03915ad38491965c89fe79c959 Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Mon, 25 Aug 2025 16:21:56 -0600 Subject: [PATCH 1/3] Release v1.0.0 --- changes/128.fixed | 1 - changes/130.added | 1 - docs/admin/release_notes/version_1.0.md | 16 +++++++++++++++- pyproject.toml | 2 +- towncrier_template.j2 | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) delete mode 100644 changes/128.fixed delete mode 100644 changes/130.added diff --git a/changes/128.fixed b/changes/128.fixed deleted file mode 100644 index d38f26c..0000000 --- a/changes/128.fixed +++ /dev/null @@ -1 +0,0 @@ -Fixed the development standards to use 2025 standards. diff --git a/changes/130.added b/changes/130.added deleted file mode 100644 index b79276f..0000000 --- a/changes/130.added +++ /dev/null @@ -1 +0,0 @@ -Add the ability to reconstruct JSON blobs to perform JSON data compliance. diff --git a/docs/admin/release_notes/version_1.0.md b/docs/admin/release_notes/version_1.0.md index 792f2fd..57c28c9 100644 --- a/docs/admin/release_notes/version_1.0.md +++ b/docs/admin/release_notes/version_1.0.md @@ -1,4 +1,18 @@ # v1.0 Release Notes -First major release of jdiff. Upgrade docs and development environments to use 2025 best practices. +This document describes all new features and changes in the release. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Release Overview + +- Major features or milestones +- Changes to compatibility with Nautobot and/or other apps, libraries etc. + +## [v1.0.0 (2025-08-25)](https://github.com/networktocode/jdiff/releases/tag/v1.0.0) + +### Added + +- [#130](https://github.com/networktocode/jdiff/issues/130) - Add the ability to reconstruct JSON blobs to perform JSON data compliance. + +### Fixed + +- [#128](https://github.com/networktocode/jdiff/issues/128) - Fixed the development standards to use 2025 standards. diff --git a/pyproject.toml b/pyproject.toml index 5109c8c..c8736f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jdiff" -version = "1.0.0a0" +version = "1.0.0" description = "A light-weight library to compare structured output from network devices show commands." authors = ["Network to Code, LLC "] readme = "README.md" diff --git a/towncrier_template.j2 b/towncrier_template.j2 index 46407b0..a707fac 100644 --- a/towncrier_template.j2 +++ b/towncrier_template.j2 @@ -9,7 +9,7 @@ This document describes all new features and changes in the release. The format - Changes to compatibility with Nautobot and/or other apps, libraries etc. {% if render_title %} -## [v{{ versiondata.version }} ({{ versiondata.date }})](https://github.com/networktocode/{{ cookiecutter.project_slug }}/releases/tag/v{{ versiondata.version}}) +## [v{{ versiondata.version }} ({{ versiondata.date }})](https://github.com/networktocode/jdiff/releases/tag/v{{ versiondata.version}}) {% endif %} {% for section, _ in sections.items() %} From 4d75089b3e356ddbbb95520a5007aaa5dd1943a5 Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Mon, 25 Aug 2025 16:27:53 -0600 Subject: [PATCH 2/3] add release overview to v1.0.0 --- docs/admin/release_notes/version_1.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/release_notes/version_1.0.md b/docs/admin/release_notes/version_1.0.md index 57c28c9..60dfd5c 100644 --- a/docs/admin/release_notes/version_1.0.md +++ b/docs/admin/release_notes/version_1.0.md @@ -4,8 +4,8 @@ This document describes all new features and changes in the release. The format ## Release Overview -- Major features or milestones -- Changes to compatibility with Nautobot and/or other apps, libraries etc. +- Updated the entire project to the new Network to Code development standards. +- Added a JSON data compliance utility to help reconstruct JSON from compliance results. ## [v1.0.0 (2025-08-25)](https://github.com/networktocode/jdiff/releases/tag/v1.0.0) From b69a2823743827e0d60db23cf93f035cdb44ed9b Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Mon, 25 Aug 2025 16:57:57 -0600 Subject: [PATCH 3/3] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c8736f8..930a23f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jdiff" -version = "1.0.0" +version = "1.0.1a0" description = "A light-weight library to compare structured output from network devices show commands." authors = ["Network to Code, LLC "] readme = "README.md"