Skip to content

Commit 9bc6339

Browse files
committed
Bump version to 0.9 (release 2026-06-25)
Update the program version from 0.8 to 0.9 and set the release date to 2026-06-25 in src/main.cpp (shown in the startup banner as "Version: 0.90 Release @ 2026-06-25"), and the matching CMake project version from 0.8.0 to 0.9.0 (shown in the configure status line as "AsFem 0.9.0").
1 parent e740fc5 commit 9bc6339

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.21)
22

33
project(AsFem
4-
VERSION 0.8.0
4+
VERSION 0.9.0
55
DESCRIPTION "Advanced Simulation kit based on Finite Element Method"
66
HOMEPAGE_URL "https://github.com/MatMechLab/AsFem"
77
LANGUAGES CXX)

src/main.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1010
//+++ Author : Yang Bai
1111
//+++ Date : 2020.12.28
12-
//+++ Update : 2024.01.31
12+
//+++ Update : 2026.06.25
1313
//+++ Purpose: the main program of the whole AsFem framework
1414
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1515

@@ -23,10 +23,10 @@ int main(int args,char *argv[]){
2323

2424
if(myapp.init(args,argv)) return 1;
2525

26-
const int Year=2024;
27-
const int Month=10;
28-
const int Day=19;
29-
const double Version=0.8;
26+
const int Year=2026;
27+
const int Month=6;
28+
const int Day=25;
29+
const double Version=0.9;
3030
myapp.printAppInfo(Year,Month,Day,Version);
3131

3232

0 commit comments

Comments
 (0)