Skip to content

Commit 02efab8

Browse files
committed
increment {mode} version
1 parent a95be82 commit 02efab8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

GSASII/git_verinfo.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- coding: utf-8 -*-
22
# git_verinfo.py - GSAS-II version info from git
33
# Do not edit, generated by 'GSASII/install/incr-version.py' script
4-
# Created 2025-05-01 14:59:54.796300-05:00
4+
# Created 2025-05-05 10:06:44.092051-05:00
55

6-
git_version = 'ae984498e42fa51cdda5e0d4071e9453b338bc33'
7-
git_tags = ['5810']
8-
git_prevtaggedversion = '4fe4437a74feacd1a8276f275667d67468cc5ad2'
9-
git_prevtags = ['5809']
10-
git_versiontag = 'v5.4.3'
6+
git_version = 'a95be82a9e08ad537dca1547dcab2f1fcd0bd3a8'
7+
git_tags = ['5811']
8+
git_prevtaggedversion = 'ae984498e42fa51cdda5e0d4071e9453b338bc33'
9+
git_prevtags = ['5810']
10+
git_versiontag = 'v5.4.4'

GSASII/install/incr-version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@
6060
tags0 = g2repo.git.tag('--points-at',commit)
6161
if tags0: tags0 = tags0.split('\n')
6262
if tags0:
63-
print(f'Latest commit ({commit.hexsha[:7]}) is already tagged ({', '.join(tags0)}).')
63+
print(f'Latest commit ({commit.hexsha[:7]}) is already tagged ({", ".join(tags0)}).')
6464
sys.exit()
6565
prev = g2repo.head.commit.parents
6666
if len(prev) == 1:
6767
tagsm1 = g2repo.git.tag('--points-at',prev[0])
6868
if tagsm1: tagsm1 = tagsm1.split('\n')
6969
if tagsm1:
70-
print(f'Previous commit ({prev[0].hexsha[:7]}) is already tagged ({', '.join(tagsm1)}).')
70+
print(f'Previous commit ({prev[0].hexsha[:7]}) is already tagged ({", ".join(tagsm1)}).')
7171
sys.exit()
7272

7373
# get the latest version number

0 commit comments

Comments
 (0)