build, versioning things
- SHA
7be8b3076a2de5b2408df81d5a94be3506645ee5- Parents
-
9301005 - Tree
21b5e70
7be8b30
7be8b3076a2de5b2408df81d5a94be3506645ee59301005
21b5e70| Status | File | + | - |
|---|---|---|---|
| M |
Makefile
|
1 | 1 |
| M |
pyproject.toml
|
1 | 1 |
| M |
src/sultree/__init__.py
|
1 | 1 |
| M |
sultree.spec
|
2 | 2 |
Makefilemodified@@ -3,7 +3,7 @@ | ||
| 3 | 3 | |
| 4 | 4 | PYTHON = python3 |
| 5 | 5 | PACKAGE = sultree |
| 6 | -VERSION = 0.1.0 | |
| 6 | +VERSION = 0.0.8 | |
| 7 | 7 | |
| 8 | 8 | .PHONY: help build install test clean dist rpm dev-install check format |
| 9 | 9 | |
pyproject.tomlmodified@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | ||
| 4 | 4 | |
| 5 | 5 | [project] |
| 6 | 6 | name = "sultree" |
| 7 | -version = "0.1.0" | |
| 7 | +version = "0.0.8" | |
| 8 | 8 | description = "SELinux-aware tree command - displays directory trees filtered by SELinux security contexts" |
| 9 | 9 | readme = "README.md" |
| 10 | 10 | requires-python = ">=3.8" |
src/sultree/__init__.pymodified@@ -5,7 +5,7 @@ A variant of the tree command that filters directory trees based on SELinux secu | ||
| 5 | 5 | Provides all the functionality of tree with additional SELinux label filtering capabilities. |
| 6 | 6 | """ |
| 7 | 7 | |
| 8 | -__version__ = "0.1.0" | |
| 8 | +__version__ = "0.0.8" | |
| 9 | 9 | __author__ = "mfw" |
| 10 | 10 | __email__ = "espadonne@outlook.com" |
| 11 | 11 | |
sultree.specmodified@@ -1,5 +1,5 @@ | ||
| 1 | 1 | Name: sultree |
| 2 | -Version: 0.1.0 | |
| 2 | +Version: 0.0.8 | |
| 3 | 3 | Release: 1%{?dist} |
| 4 | 4 | Summary: SELinux-aware tree command for displaying directory trees filtered by security contexts |
| 5 | 5 | |
@@ -48,7 +48,7 @@ install -Dm755 sultree %{buildroot}%{_bindir}/sultree-standalone | ||
| 48 | 48 | %{_bindir}/sultree-standalone |
| 49 | 49 | |
| 50 | 50 | %changelog |
| 51 | -* Sat Aug 24 2024 mfw <espadonne@outlook.com> - 0.1.0-1 | |
| 51 | +* Sat Aug 24 2024 mfw <espadonne@outlook.com> - 0.0.8-1 | |
| 52 | 52 | - Initial RPM release |
| 53 | 53 | - SELinux-aware tree command implementation |
| 54 | 54 | - Full tree command compatibility |