From 489dcc1a408ca1667d99a4f562fb5e18d3377fd8 Mon Sep 17 00:00:00 2001 From: Daniel Milnes Date: Sat, 10 Jun 2023 14:35:27 +0100 Subject: [PATCH] Release 1.2.0 --- .github/workflows/build.yaml | 12 ++++++------ .github/workflows/release.yaml | 4 ++-- hstsparser.spec | 2 +- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 89cc292..d8dc90b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -79,15 +79,15 @@ jobs: - name: Upload SRPM uses: actions/upload-artifact@v3 with: - name: hstsparser-1.1.9-1.fc38.src.rpm - path: /var/lib/mock/fedora-38-x86_64/result/hstsparser-1.1.9-1.fc38.src.rpm + name: hstsparser-1.2.0-1.fc38.src.rpm + path: /var/lib/mock/fedora-38-x86_64/result/hstsparser-1.2.0-1.fc38.src.rpm if-no-files-found: error - name: Upload RPM uses: actions/upload-artifact@v3 with: - name: hstsparser-1.1.9-1.fc38.noarch.rpm - path: /var/lib/mock/fedora-38-x86_64/result/hstsparser-1.1.9-1.fc38.noarch.rpm + name: hstsparser-1.2.0-1.fc38.noarch.rpm + path: /var/lib/mock/fedora-38-x86_64/result/hstsparser-1.2.0-1.fc38.noarch.rpm if-no-files-found: error rpmlint: @@ -102,11 +102,11 @@ jobs: - name: Download RPM uses: actions/download-artifact@v2 with: - name: hstsparser-1.1.9-1.fc38.noarch.rpm + name: hstsparser-1.2.0-1.fc38.noarch.rpm path: . - name: Install dependencies run: dnf install rpmlint -y - name: Lint RPM Spec File - run: rpmlint -sv ./hstsparser-1.1.9-1.fc38.noarch.rpm ./hstsparser.spec + run: rpmlint -sv ./hstsparser-1.2.0-1.fc38.noarch.rpm ./hstsparser.spec diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a88313a..457678b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: with: workflow: build.yaml commit: ${{github.event.pull_request.head.sha}} - name: hstsparser-1.1.9-1.fc38.noarch.rpm + name: hstsparser-1.2.0-1.fc38.noarch.rpm - name: Create Draft GitHub Release uses: softprops/action-gh-release@v1 @@ -36,7 +36,7 @@ jobs: generate_release_notes: true files: | hstsparser.exe - hstsparser-1.1.9-1.fc38.noarch.rpm + hstsparser-1.2.0-1.fc38.noarch.rpm pypi: runs-on: ubuntu-latest diff --git a/hstsparser.spec b/hstsparser.spec index 803c10f..f8d98c2 100644 --- a/hstsparser.spec +++ b/hstsparser.spec @@ -1,5 +1,5 @@ Name: hstsparser -Version: 1.1.9 +Version: 1.2.0 Release: 1%{?dist} Summary: HSTS Digital Forensics parser License: MIT diff --git a/pyproject.toml b/pyproject.toml index c77df96..bb7e067 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hstsparser" -version = "1.1.9" +version = "1.2.0" description = "A tool to parse Firefox and Chrome HSTS databases into forensic artifacts." authors = ["Daniel Milnes "] license = "MIT"