Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
088be7c0
Commit
088be7c0
authored
9 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Fix iss file not changed when releasing
parent
cf9186c8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ci/appveyor/sakia.iss
+1
-1
1 addition, 1 deletion
ci/appveyor/sakia.iss
release.sh
+1
-0
1 addition, 0 deletions
release.sh
with
2 additions
and
1 deletion
ci/appveyor/sakia.iss
+
1
−
1
View file @
088be7c0
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
#error "Unable to find MyAppExe"
#error "Unable to find MyAppExe"
#endif
#endif
#define MyAppVerStr "0.20.0dev
7
"
#define MyAppVerStr "0.20.0dev
10
"
[Setup]
[Setup]
AppName={#MyAppName}
AppName={#MyAppName}
...
...
This diff is collapsed.
Click to expand it.
release.sh
+
1
−
0
View file @
088be7c0
...
@@ -7,6 +7,7 @@ echo "Current version: $current"
...
@@ -7,6 +7,7 @@ echo "Current version: $current"
if
[[
$1
=
~ ^[0-9]+.[0-9]+.[0-9]+[0-9a-z]+
$
]]
;
then
if
[[
$1
=
~ ^[0-9]+.[0-9]+.[0-9]+[0-9a-z]+
$
]]
;
then
IFS
=
'.'
read
-r
-a
array
<<<
"
$1
"
IFS
=
'.'
read
-r
-a
array
<<<
"
$1
"
sed
-i
"s/__version_info__
\
= (
$current
)/__version_info__ = ('
${
array
[0]
}
', '
${
array
[1]
}
', '
${
array
[2]
}
')/g"
src/sakia/__init__.py
sed
-i
"s/__version_info__
\
= (
$current
)/__version_info__ = ('
${
array
[0]
}
', '
${
array
[1]
}
', '
${
array
[2]
}
')/g"
src/sakia/__init__.py
sed
-i
"#define MyAppVerStr
\"
(
$current
)
\"
/#define MyAppVerStr
\"
$1
\"
/
git commit src/sakia/__init__.py -m "
$1
"
git commit src/sakia/__init__.py -m "
$1
"
git tag "
$1
"
git tag "
$1
"
else
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment