Skip to content

Commit

Permalink
Release v1.3.0 (#1001)
Browse files Browse the repository at this point in the history
##
[v1.3.0](https://github.com/ctc-oss/fapolicy-analyzer/releases/tag/v1.3.0)
- 2024-02-11


### Added

- Allow rules to be loaded dynamically into a profiling session
([#990](#990))
- Added syntax highlighting to the fapolicyd config editor
([#991](#991))

### Packaging

- Use digest crate for sha256 hashing, removing need for ring crate.
([#984](#984))
- Add a version number to the PDF user guide content and filename.
([#995](#995))
  • Loading branch information
jw3 authored Feb 11, 2024
1 parent 592e92f commit e0a10db
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 11 deletions.
14 changes: 14 additions & 0 deletions .towncrier.template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{% for section_text, section in sections.items() %}{%- if section %}{{section_text}}{% endif -%}
{% if section %}
{% for category in ['packaging', 'added', 'changed', 'removed', 'fixed' ] if category in section %}
### {{ definitions[category]['name'] }}

{% if definitions[category]['showcontent'] %}
{% for text, pull_requests in section[category].items() %}
- {{ text }} {{ pull_requests|join(', ') }}
{% endfor %}
{% else %}
- {{ section[category]['']|join(', ') }}
{% endif %}

{% endfor %}{% else %}No significant changes.{% endif %}{% endfor %}
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
Release notes
###
===

`fapolicy-analyzer` issues are filed on [GitHub](https://github.com/ctc-oss/fapolicy-analyzer/issues).

``fapolicy-analyzer`` issues are filed on [GitHub](https://github.com/ctc-oss/fapolicy-analyzer/issues).

## Releases

<!-- towncrier release notes start -->

## [v1.3.0](https://github.com/ctc-oss/fapolicy-analyzer/releases/tag/v1.3.0) - 2024-02-11


### Added

- Allow rules to be loaded dynamically into a profiling session ([#990](https://github.com/ctc-oss/fapolicy-analyzer/pull/990))
- Added syntax highlighting to the fapolicyd config editor ([#991](https://github.com/ctc-oss/fapolicy-analyzer/pull/991))

### Packaging

- Use digest crate for sha256 hashing, removing need for ring crate. ([#984](https://github.com/ctc-oss/fapolicy-analyzer/pull/984))
- Add a version number to the PDF user guide content and filename. ([#995](https://github.com/ctc-oss/fapolicy-analyzer/pull/995))


# v1.2.2

### Added Features
Expand Down
4 changes: 2 additions & 2 deletions fapolicy-analyzer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: File Access Policy Analyzer
Name: fapolicy-analyzer
Version: 1.2.2
Version: 1.3.0
Release: 1%{?dist}

SourceLicense: GPL-3.0-or-later
Expand Down Expand Up @@ -128,5 +128,5 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
%ghost %attr(640,root,root) %verify(not md5 size mtime) %{_localstatedir}/log/%{name}/%{name}.log

%changelog
* Wed Dec 27 2023 John Wass <[email protected]> 1.2.2-1
* Sat Feb 03 2024 John Wass <[email protected]> 1.3.0-1
- New release
1 change: 0 additions & 1 deletion fapolicy_analyzer/ui/rules/rules_admin_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ def on_next_notifications(self, notifications: Sequence[Notification]):

def on_next_profiling_state(self, state: ProfilerState):
if self.__profiling_active != state.running:
print(state)
self.__profiling_active = state.running
self.refresh_toolbar()

Expand Down
1 change: 0 additions & 1 deletion news/984.packaging.md

This file was deleted.

1 change: 0 additions & 1 deletion news/990.added.md

This file was deleted.

1 change: 0 additions & 1 deletion news/991.added.md

This file was deleted.

1 change: 0 additions & 1 deletion news/995.packaging.md

This file was deleted.

20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
[tool.ruff.lint]
ignore = ["E402"]

[tool.towncrier]
filename = "CHANGELOG.md"
version = "1.3.0"
start_string = "<!-- towncrier release notes start -->\n"
title_format = "## [v{version}](https://github.com/ctc-oss/fapolicy-analyzer/releases/tag/v{version}) - {project_date}"
issue_format = "[#{issue}](https://github.com/ctc-oss/fapolicy-analyzer/pull/{issue})"
underlines = ["", "", ""]
directory = "news"

[tool.towncrier.fragment.added]
name = "Added"
[tool.towncrier.fragment.changed]
name = "Changed"
[tool.towncrier.fragment.removed]
name = "Removed"
[tool.towncrier.fragment.fixed]
name = "Fixed"
[tool.towncrier.fragment.packaging]
name = "Packaging"
4 changes: 2 additions & 2 deletions scripts/srpm/fapolicy-analyzer.el9.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: File Access Policy Analyzer
Name: fapolicy-analyzer
Version: 1.2.2
Version: 1.3.0
Release: 1%{?dist}
License: GPL-3.0-or-later
URL: https://github.com/ctc-oss/fapolicy-analyzer
Expand Down Expand Up @@ -221,5 +221,5 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
%attr(755,root,root) %{_datadir}/applications/%{name}.desktop

%changelog
* Wed Dec 27 2023 John Wass <[email protected]> 1.2.2-1
* Sat Feb 03 2024 John Wass <[email protected]> 1.3.0-1
- New release

0 comments on commit e0a10db

Please sign in to comment.