Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
b344bd95
Commit
b344bd95
authored
May 07, 2016
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix release script and changelog format
parent
add6bcca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ChangeLog.rst
ChangeLog.rst
+1
-1
support/release.py
support/release.py
+3
-1
No files found.
ChangeLog.rst
View file @
b344bd95
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
Note that it would be an undefined behavior in ``std::printf``.
Note that it would be an undefined behavior in ``std::printf``.
* Length modifiers such as `
ll
` are now optional in printf formatting
* Length modifiers such as `
`ll`
` are now optional in printf formatting
functions and the correct type is determined automatically
functions and the correct type is determined automatically
(`#255 <https://github.com/fmtlib/fmt/issues/255>`_):
(`#255 <https://github.com/fmtlib/fmt/issues/255>`_):
...
...
support/release.py
View file @
b344bd95
...
@@ -137,7 +137,9 @@ if __name__ == '__main__':
...
@@ -137,7 +137,9 @@ if __name__ == '__main__':
try
:
try
:
run
=
Runner
()
run
=
Runner
()
fmt_dir
=
os
.
path
.
join
(
workdir
,
'fmt'
)
fmt_dir
=
os
.
path
.
join
(
workdir
,
'fmt'
)
branch
=
args
.
get
(
'<branch>'
,
'master'
)
branch
=
args
.
get
(
'<branch>'
)
if
branch
is
None
:
branch
=
'master'
run
(
'git'
,
'clone'
,
'-b'
,
branch
,
'git@github.com:fmtlib/fmt.git'
,
fmt_dir
)
run
(
'git'
,
'clone'
,
'-b'
,
branch
,
'git@github.com:fmtlib/fmt.git'
,
fmt_dir
)
# Convert changelog from RST to GitHub-flavored Markdown and get the version.
# Convert changelog from RST to GitHub-flavored Markdown and get the version.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment