Skip to content

Commit a603a14

Browse files
committed
start dev of v3.5
1 parent 6fdf37d commit a603a14

File tree

11 files changed

+25
-15
lines changed

11 files changed

+25
-15
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build SocNetV for Windows x86_64 using Qt/MSVC2019 platform
22
# https://socnetv.org
3-
# Last Update: Mar 2026
3+
# Last Update: Apr 2026
44
# Copyright (c) 2026 by Dimitris Kalamaras
55
#
66
# This script builds SocNetV Windows installers ONLY on tags i.e. 3.0 or 3.0-beta*
@@ -55,7 +55,7 @@ install:
5555
- cmd: echo %APPVEYOR_REPO_COMMIT:~0,7%
5656
- cmd: echo "Setting SocNetV current version..."
5757
# NOTE: This is changed by our update version bash script
58-
- cmd: set SOCNETV_VERSION=3.4
58+
- cmd: set SOCNETV_VERSION=3.5
5959
- cmd: echo %SOCNETV_VERSION%
6060
- cmd: echo "Setting build type"
6161
- cmd: set BUILD_TYPE=Release

.github/workflows/build-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
env:
99
APP_NAME: "SocNetV"
1010
UNIXNAME: "socnetv"
11-
SOCNETV_VERSION: "3.4" # TODO - READ FROM FILE
12-
VERSION: "3.4" # Will be overwritten by workflow with the dynamically determined version
11+
SOCNETV_VERSION: "3.5" # TODO - READ FROM FILE
12+
VERSION: "3.5" # Will be overwritten by workflow with the dynamically determined version
1313
QMAKE_PROJECT: "socnetv.pro"
1414
PUBLISHER: "Dimitris Kalamaras"
1515
QT_MODULES: "qtimageformats qt5compat qtcharts qtwebview"

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build SocNetV images for Linux and macOS
22
# https://socnetv.org
3-
# Last Update: Mar 2026
3+
# Last Update: Apr 2026
44
# Copyright (c) 2026 by Dimitris Kalamaras
55
#
66
# This script builds SocNetV binaries ONLY when the commit message contains [travis]
@@ -14,7 +14,7 @@ language: cpp
1414

1515
env:
1616
global:
17-
- SOCNETV_VERSION=3.4
17+
- SOCNETV_VERSION=3.5
1818
- UPLOADTOOL_ISPRERELEASE=true
1919

2020
jobs:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# CMakeLists.txt - Build configuration for SocNetV (Social Network Visualizer)
44
#
5-
# Last Update: Mar 2026
5+
# Last Update: Apr 2026
66
#
77
# This file defines the build system for SocNetV, an open-source social network
88
# analysis and visualization application built with Qt6. It is designed to support
@@ -55,7 +55,7 @@ set(APP_NAME SocNetV)
5555
set(APP_NAME_LOWER socnetv)
5656

5757
project(SocNetV
58-
VERSION 3.4
58+
VERSION 3.5
5959
DESCRIPTION "SocNetV: Open-source social network analysis application based on Qt."
6060
HOMEPAGE_URL "https://socnetv.org"
6161
LANGUAGES CXX

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
socnetv (3.5-1) unstable; urgency=medium
2+
3+
* New upstream release.
4+
5+
-- Dimitris Kalamaras <dimitris.kalamaras@gmail.com> Mon, 20 Apr 2026 12:00:00 +0300
6+
17
socnetv (3.4-1) unstable; urgency=medium
28

39
* New upstream release.

man/socnetv.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH socnetv 1 "Mar 2026" "SocNetV-3.4" "Social Network Visualiser"
1+
.TH socnetv 1 "Apr 2026" "SocNetV-3.5" "Social Network Visualiser"
22
.SH NAME
33
socnetv - Visualize and analyze social networks
44
.SH SYNOPSIS

scripts/innosetup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#define RELEASEFOLDER "release\"
44
#define EXECUTABLE APPSHORT + ".exe"
55
#define NUMERICVERSION GetVersionNumbersString(RELEASEFOLDER+EXECUTABLE)
6-
#define VERSION "3.4"
6+
#define VERSION "3.5"
77
#define URL "https://socnetv.org"
88
#define COPYRIGHT "2005-2026 " + URL
99

socnetv.appdata.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
<release version="3.3" date="2026-02-25" />
3131
<release version="3.3.1" date="2026-02-26" />
3232
<release version="3.4" date="2026-03-10" />
33+
<release version="3.5" date="2026-04-20" />
34+
3335

3436
</releases>
3537
<developer_name>Dimitris B. Kalamaras</developer_name>

socnetv.pro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ TEMPLATE = app
1212
CONFIG += qt thread $${ALLOW_WARNINGS} $${MY_TARGET_BUILD}
1313
CONFIG += c++17
1414
TARGET = socnetv
15-
VERSION=3.4
15+
VERSION=3.5
1616
LANGUAGE = C++
1717

1818

@@ -181,8 +181,8 @@ RESOURCES = src/images.qrc \
181181

182182
# This is Windows only
183183
win32 {
184-
VERSION = 3.4.0.1 # major.minor.patch.build
185-
VERSION_PE_HEADER = 3.4 # MSVC link.exe option /VERSION:x.y expects two numeric components (major.minor)
184+
VERSION = 3.5.0.1 # major.minor.patch.build
185+
VERSION_PE_HEADER = 3.5 # MSVC link.exe option /VERSION:x.y expects two numeric components (major.minor)
186186

187187
#RC_FILE = src/icon.rc
188188
RC_ICONS = src/images/socnetv.ico

socnetv.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
Name: socnetv
17-
Version: 3.4
17+
Version: 3.5
1818
Release: 1%{?dist}
1919
Summary: A Social Networks Analyser and Visualiser
2020
License: GPL-3.0-or-later
@@ -134,6 +134,8 @@ pwd
134134
### CHANGELOG SECTION
135135
###
136136
%changelog
137+
* Mon Apr 20 2026 Dimitris Kalamaras <dimitris.kalamaras@gmail.com> - 3.5-1
138+
- Upstream v3.5
137139
* Tue Mar 10 2026 Dimitris Kalamaras <dimitris.kalamaras@gmail.com> - 3.4-1
138140
- Upstream v3.4
139141
* Thu Feb 26 2026 Dimitris Kalamaras <dimitris.kalamaras@gmail.com> - 3.3.1-1

0 commit comments

Comments
 (0)