Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
devflow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
itminedu
devflow
Commits
19f97a4c
Commit
19f97a4c
authored
11 years ago
by
Filippos Giannakos
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature-improve-changelog' into develop
parents
26ada829
f3124df8
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Changelog
+2
-0
2 additions, 0 deletions
Changelog
devflow/flow.py
+1
-1
1 addition, 1 deletion
devflow/flow.py
with
3 additions
and
1 deletion
Changelog
+
2
−
0
View file @
19f97a4c
#Changelog for feature-improve-changelog
* Prefix commit message in changelog with '* '
#Changelog for feature-fix-release-version
#Changelog for feature-fix-release-version
* Fix debian tag when finishing release
* Fix debian tag when finishing release
* Strip rc from version when ending a release
* Strip rc from version when ending a release
...
...
This diff is collapsed.
Click to expand it.
devflow/flow.py
+
1
−
1
View file @
19f97a4c
...
@@ -184,7 +184,7 @@ class GitManager(object):
...
@@ -184,7 +184,7 @@ class GitManager(object):
commits
=
repo
.
git
.
rev_list
(
"
%s..%s
"
%
(
base_branch
,
branch
)).
split
(
"
\n
"
)
commits
=
repo
.
git
.
rev_list
(
"
%s..%s
"
%
(
base_branch
,
branch
)).
split
(
"
\n
"
)
for
c
in
commits
:
for
c
in
commits
:
commit
=
repo
.
commit
(
c
)
commit
=
repo
.
commit
(
c
)
lines
.
append
(
commit
.
message
)
lines
.
append
(
"
*
"
+
commit
.
message
.
split
(
"
\n
"
)[
0
]
)
lines
.
append
(
"
\n
"
)
lines
.
append
(
"
\n
"
)
f
=
open
(
changelog
,
'
rw+
'
)
f
=
open
(
changelog
,
'
rw+
'
)
...
...
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