Skip to content

Commit a935a50

Browse files
committed
write release notes, update pyproject.toml for v3.0.0
1 parent fd9e06a commit a935a50

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

make-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
if [[ $# != 1 ]] ; then
3-
echo "error: please provide a version tag in the form 'v.1.0.0'" >&2
3+
echo "error: please provide a version tag in the form 'v1.0.0'" >&2
44
exit 1
55
fi
66

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "nuts"
7-
version = "3.0.0-alpha-3"
7+
version = "3.0.0"
88
description = "Network Unit Testing System Component of NetTowel"
99
authors = ["Méline Sieber, Urs Baumann, Matthias Gabriel"]
1010
maintainers = ["Méline Sieber <meline.sieber@ost.ch>"]
11-
classifiers = ["Framework :: Pytest", "Development Status :: 3 - Alpha"]
11+
classifiers = ["Framework :: Pytest", "Topic :: System :: Networking"]
1212
homepage = "https://github.com/INSRapperswil/Nuts"
1313
repository = "https://github.com/INSRapperswil/Nuts"
1414
license = "MIT"

release_notes/v3.0.0.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Release Notes for Nuts 3.0.0
2+
3+
Nuts 3.0.0 is a completely new version of nuts, rewritten from scratch and not compatible with earlier versions of nuts. Nuts 3.0.0. is designed as a pytest-plugin to run tests and uses nornir to interact with a network in the background. It requires python 3.7 and above. In case you wonder where version 2.0.0 went: Nuts 2 was a study project written in spring 2020, which used nornir, but not pytest to conduct tests.
4+
5+
Features of nuts 3.0.0:
6+
7+
* Write test bundles as yaml files that contain a desired state of the network. Nuts comes with a basic set of test definitions - see the documentation for details. Nuts then checks the desired state against the actual state of the network using pytest.
8+
* Enhance nuts: Nuts is designed as pytest plugin. You can write your own, custom test definitions and test bundles to suit your specific needs. Note: It is currently not supported (but nevertheless possible), since future releases might introduce breaking changes.
9+
* If you write your own test definitions/test classes and want to share it with the community, feel free to contact the developers and they will happily link to it in the repo readme.
10+
11+
Planned for 3.0.1:
12+
13+
* Improve error handling - the current implementation has an opaque error handling and is not really informative or helpful.
14+
* Refactor self-tests - the current self-tests are hard to read for non-devs and must be improved.
15+
16+
Planned for 4.0.0 (aka the far future):
17+
18+
Nuts is deeply intertwined with pytest to create test classes out of the yaml file. It digs deep into pytest to use its functionalities without really committing to pytest. It smells of future problems with project growth. Version 4 will try to solve that, but this may also introduce breaking changes.
19+
File renamed without changes.

0 commit comments

Comments
 (0)