Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:

- name: Build AppImage
run: |
./appimagetool-x86_64.AppImage --appimage-extract-and-run AppDir/ cycles-0.4.0-x86_64.AppImage
./appimagetool-x86_64.AppImage --appimage-extract-and-run AppDir/ cycles-0.4.1-x86_64.AppImage

- name: Upload AppImage
uses: actions/upload-artifact@v4
with:
name: Cycles-AppImage
path: cycles-0.4.0-x86_64.AppImage
path: cycles-0.4.1-x86_64.AppImage
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to the Cycles project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.1] - 2025-10-15

### Changed
- Updated version number consistently across all project files

## [0.4.0] - 2025-10-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type AppConfig struct {
// DefaultConfig returns the default configuration
func DefaultConfig() *AppConfig {
return &AppConfig{
Version: "0.4.0",
Version: "0.4.1",
GridColumns: 8,
UpdateInterval: 2 * time.Second,
HistorySize: 30,
Expand Down
4 changes: 2 additions & 2 deletions config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
func TestDefaultConfig(t *testing.T) {
config := DefaultConfig()

if config.Version != "0.4.0" {
t.Errorf("Expected version 0.4.0, got %s", config.Version)
if config.Version != "0.4.1" {
t.Errorf("Expected version 0.4.1, got %s", config.Version)
}

if config.GridColumns != 4 {
Expand Down
4 changes: 2 additions & 2 deletions info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ func TestGetAppInfo(t *testing.T) {
t.Error("Expected app info to contain 'Cycles'")
}

if !strings.Contains(info, "0.4.0") {
t.Error("Expected app info to contain version 0.4.0")
if !strings.Contains(info, "0.4.1") {
t.Error("Expected app info to contain version 0.4.1")
}

if !strings.Contains(info, "MIT") {
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tylercode-cycles
version: '0.3.4'
version: '0.4.1'
summary: A simple, theme-aware, CPU information tool
description: |
This application displays all logical cores on the machine and the current clock speed and core utilization. The theme is controlled by the OS.
Expand Down