Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-copasi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COPASI
dune-copasi
Commits
f72c509e
Commit
f72c509e
authored
5 years ago
by
Santiago Ospina De Los Ríos
Browse files
Options
Downloads
Patches
Plain Diff
Fix links in Changelog [skip-ci]
parent
10ce9fa9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!14
Resolve "Include Semantic Versioning"
Pipeline
#21740
skipped
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-1
1 addition, 1 deletion
CHANGELOG.md
util/bump_version.py
+3
-3
3 additions, 3 deletions
util/bump_version.py
with
4 additions
and
4 deletions
CHANGELOG.md
+
1
−
1
View file @
f72c509e
...
...
@@ -32,5 +32,5 @@ Types of changes
-
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
-
Solver for reaction-diffusion systems in multiple compartments.
[
Unreleased
]:
https://gitlab.dune-project.org/copasi/dune-copasi/0.1.0...master
[
Unreleased
]:
https://gitlab.dune-project.org/copasi/dune-copasi/
compare/v
0.1.0...master
[
0.1.0
]:
https://gitlab.dune-project.org/copasi/dune-copasi/-/tags/v0.1.0
\ No newline at end of file
This diff is collapsed.
Click to expand it.
util/bump_version.py
+
3
−
3
View file @
f72c509e
...
...
@@ -60,7 +60,7 @@ def main(argv):
prefix
=
'
Version:
'
update_version
(
dune_version_path
,
prefix
+
old_version
,
prefix
+
new_version
)
project_url
=
"
https://gitlab.dune-project.org/copasi/dune-copasi
/
"
project_url
=
"
https://gitlab.dune-project.org/copasi/dune-copasi
"
with
open
(
changelog_path
,
"
r
"
)
as
changelog_file
:
new_changelog
=
''
...
...
@@ -69,9 +69,9 @@ def main(argv):
new_changelog
+=
line
+
"
\n
"
new_changelog
+=
"
## [
"
+
new_version
+
"
] -
"
+
datetime
.
date
.
today
().
isoformat
()
+
"
\n
"
elif
"
[Unreleased]:
"
+
project_url
in
line
:
new_changelog
+=
"
[Unreleased]:
"
+
project_url
+
new_version
+
"
...master
\n
"
new_changelog
+=
"
[Unreleased]:
"
+
project_url
+
"
/compare/v
"
+
new_version
+
"
...master
\n
"
elif
"
[
"
+
old_version
+
"
]:
"
+
project_url
in
line
:
new_changelog
+=
"
[
"
+
new_version
+
"
]:
"
+
project_url
+
old_version
+
"
...
"
+
new_version
+
"
\n
"
new_changelog
+=
"
[
"
+
new_version
+
"
]:
"
+
project_url
+
"
/compare/v
"
+
old_version
+
"
...
"
+
new_version
+
"
\n
"
new_changelog
+=
line
else
:
new_changelog
+=
line
...
...
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