chore: bump version to 2.6.7 (#2637)

* chore: bump version to 2.6.7

* chore: sync Cargo.lock to 2.6.7 (was stuck at 2.6.5)

* ci: skip lint/test/typecheck for non-code PRs (docs, Tauri, version bumps)

Added paths-ignore to lint-code, test, and typecheck workflows so they
don't run when only markdown, docs, src-tauri config, or desktop build
files change. Push to main still runs unconditionally.
This commit is contained in:
Elie Habib
2026-04-03 07:37:45 +04:00
committed by GitHub
parent a3d3b1cd52
commit 50626a40c7
8 changed files with 30 additions and 6 deletions

View File

@@ -2,6 +2,14 @@ name: Lint Code
on:
pull_request:
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'src-tauri/**'
- 'CHANGELOG.md'
- 'LICENSE'
- '.github/workflows/build-desktop.yml'
- '.github/workflows/docker-publish.yml'
push:
branches: [main]

View File

@@ -2,6 +2,14 @@ name: Test
on:
pull_request:
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'src-tauri/**'
- 'CHANGELOG.md'
- 'LICENSE'
- '.github/workflows/build-desktop.yml'
- '.github/workflows/docker-publish.yml'
push:
branches: [main]

View File

@@ -2,6 +2,14 @@ name: Typecheck
on:
pull_request:
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'src-tauri/**'
- 'CHANGELOG.md'
- 'LICENSE'
- '.github/workflows/build-desktop.yml'
- '.github/workflows/docker-publish.yml'
push:
branches: [main]

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "world-monitor",
"version": "2.6.6",
"version": "2.6.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "world-monitor",
"version": "2.6.6",
"version": "2.6.7",
"hasInstallScript": true,
"license": "AGPL-3.0-only",
"dependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "world-monitor",
"private": true,
"version": "2.6.6",
"version": "2.6.7",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {

2
src-tauri/Cargo.lock generated
View File

@@ -5332,7 +5332,7 @@ dependencies = [
[[package]]
name = "world-monitor"
version = "2.6.5"
version = "2.6.7"
dependencies = [
"getrandom 0.2.17",
"keyring",

View File

@@ -1,6 +1,6 @@
[package]
name = "world-monitor"
version = "2.6.6"
version = "2.6.7"
description = "World Monitor desktop application"
authors = ["World Monitor"]
edition = "2021"

View File

@@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2",
"productName": "World Monitor",
"mainBinaryName": "world-monitor",
"version": "2.6.6",
"version": "2.6.7",
"identifier": "app.worldmonitor.desktop",
"build": {
"beforeDevCommand": "npm run build:sidecar-sebuf && node scripts/build-sidecar-handlers.mjs && npm run dev",