Skip to content

Commit 7b2dea9

Browse files
committed
increment mini version
1 parent 7e69e6c commit 7b2dea9

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

GSASII/git_verinfo.py

Lines changed: 7 additions & 7 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
3-
# Do not edit, generated by 'GSASII/install/incr-minor-version.py' script
4-
# Created 2025-04-27 23:01:05.797041-05:00
3+
# Do not edit, generated by 'GSASII/install/incr-mini-version.py' script
4+
# Created 2025-04-27 23:17:45.344731-05:00
55

6-
git_version = 'a10a2498ca4d2ac80781d7288adb357af5893c66'
7-
git_tags = ['5807']
8-
git_prevtaggedversion = 'dfc4cc57bfa3a65d8b086eac2dfcc470d4c95187'
9-
git_prevtags = ['5806']
10-
git_versiontag = 'v5.4.0'
6+
git_version = '7e69e6ce5682a9c48a9a267319ddfc72d519234d'
7+
git_tags = ['5808']
8+
git_prevtaggedversion = 'a10a2498ca4d2ac80781d7288adb357af5893c66'
9+
git_prevtags = ['5807']
10+
git_versiontag = 'v5.4.1'

GSASII/install/incr-mini-version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
g2repo.index.add([pyfile])
114114
g2repo.index.commit('increment mini version')
115115
g2repo.remote(name='origin').push()
116-
g2repo.remote(name='origin').push('--tags')
116+
g2repo.remotes.origin.push(versiontag)
117+
g2repo.remotes.origin.push(str(tagnum))
117118

118119
# print('Now do:\n\t git add \n\t git commit \n\t git push \n\t git push --tags\n (try "git push origin HEAD --tags")')

GSASII/install/incr-minor-version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
g2repo.index.add([pyfile])
108108
g2repo.index.commit('increment minor version')
109109
g2repo.remote(name='origin').push()
110-
g2repo.remote(name='origin').push('--tags')
110+
g2repo.remotes.origin.push(versiontag)
111+
g2repo.remotes.origin.push(str(tagnum))
111112

112113
# print('Now do:\n\t git add \n\t git commit \n\t git push \n\t git push --tags\n (try "git push origin HEAD --tags")')

0 commit comments

Comments
 (0)