Compare commits

...

4 Commits

Author SHA1 Message Date
Ritchie Mwewa
eed3ee8e1c 4.0 stable 2026-01-06 22:31:38 +02:00
Ritchie Mwewa
5bb0b6db6b 4.0 stable 2026-01-06 22:19:11 +02:00
Ritchie Mwewa
1916a7e1a6 4.0/release-candidate 2026-01-06 22:12:49 +02:00
Ritchie Mwewa
400829c6ec 4.0/release-candidate 2026-01-06 22:10:52 +02:00
4 changed files with 5 additions and 6 deletions

View File

@@ -7,7 +7,6 @@ TUI-based toolkit for GitHub data analysis.
![Code Size](https://img.shields.io/github/languages/code-size/bellingcat/octosuite)
![Release Date](https://img.shields.io/github/release-date/bellingcat/octosuite)
![Build Status](https://img.shields.io/github/actions/workflow/status/bellingcat/octosuite/python-publish.yml)
[![CodeQL Advanced](https://github.com/bellingcat/octosuite/actions/workflows/codeql.yml/badge.svg)](https://github.com/bellingcat/octosuite/actions/workflows/codeql.yml)
![License](https://img.shields.io/github/license/bellingcat/octosuite)
## Overview

View File

@@ -1,6 +1,6 @@
[project]
name = "octosuite"
version = "4.0.0rc0"
version = "4.0.0"
description = "TUI-based toolkit for GitHub data analysis."
readme = "README.md"
license = "MIT"
@@ -16,7 +16,7 @@ dependencies = [
"black>=25.12.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
@@ -34,4 +34,4 @@ dev = [
]
[project.scripts]
octosuite = "octosuite.app:start"
octosuite = "octosuite.app:start"

View File

@@ -1,2 +1,2 @@
__pkg__ = "octosuite"
__version__ = "4.0.0rc0"
__version__ = "4.0.0"

View File

@@ -221,7 +221,7 @@ def check_updates():
result = checker.check(__pkg__, __version__)
if result is not None:
status.stop()
message_dialog(title="Update Available", text=result).run()
message_dialog(title="Update Available", text=str(result)).run()
else:
status.stop()
message_dialog(