File tree 4 files changed +19
-12
lines changed
4 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.0.4
2
+ current_version = 0.0.5
3
3
commit = True
4
4
message = bump {current_version} -> {new_version}
5
5
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ unreleased]
9
9
10
+ ## [ 0.0.5] - 2023-09-25
11
+
12
+ ### Fixed
13
+
14
+ - badge image url for projects hosted on GitLab
15
+
10
16
## [ 0.0.4] - 2023-09-25
11
17
12
18
### Changed
@@ -81,7 +87,8 @@ An example project (comparable to [pypa/sampleproject]) can be found at [jannism
81
87
82
88
- trove classifiers (only relevant when publishing to PyPI)
83
89
84
- [ unreleased ] : https://github.com/jannismain/python-project-template/compare/v0.0.4...HEAD
90
+ [ unreleased ] : https://github.com/jannismain/python-project-template/compare/v0.0.5...HEAD
91
+ [ 0.0.5 ] : https://github.com/jannismain/python-project-template/compare/0.0.4...0.0.5
85
92
[ 0.0.4 ] : https://github.com/jannismain/python-project-template/compare/0.0.3...0.0.4
86
93
[ 0.0.3 ] : https://github.com/jannismain/python-project-template/compare/0.0.2...0.0.3
87
94
[ 0.0.2 ] : https://github.com/jannismain/python-project-template/compare/0.0.1...0.0.2
Original file line number Diff line number Diff line change 11
11
12
12
app = Typer ()
13
13
14
- __version__ = "0.0.4 "
14
+ __version__ = "0.0.5 "
15
15
16
16
17
17
def version_callback (value : bool ) -> None :
Original file line number Diff line number Diff line change 1
- {# Example: remote_url = git@git01.iis.fhg.de:ks-ip-lib/software/sample_project.git #}
2
- {# |----------------|---------|-----------------------| #}
3
- {# domain group pages_path #}
4
- {# |---------------------------------| #}
5
- {# path #}
6
- {# remote_url_https = https://git01.iis.fhg.de/ks-ip-lib/software/sample_project/ #}
7
- {# remote_url_pages = https://ks-ip-lib.git01.iis.fhg.de/software/sample_project/ #}
1
+ {# Example: remote_url = git@git01.iis.fhg.de:ks-ip-lib/software/sample_project.git #}
2
+ {# |----------------|---------|-----------------------| #}
3
+ {# domain group pages_path #}
4
+ {# |---------------------------------| #}
5
+ {# path #}
6
+ {# remote_url_https = https://git01.iis.fhg.de/ks-ip-lib/software/sample_project/ #}
7
+ {# remote_url_pages = https://ks-ip-lib.git01.iis.fhg.de/software/sample_project/ #}
8
8
9
9
{% set domain = (remote_url | replace("git@", "")).split(":")[0] %}
10
10
{% set path = remote_url.split(":")[1].replace(".git", "") %}
37
37
{% set remote_url_pipeline_badge = remote_url_https + '/actions/workflows/ci.yaml/badge.svg' %}
38
38
{% else %}
39
39
## coverage and pipeline badges are provided by gitlab
40
- {% set remote_url_coverage_badge = remote_url_https + '/badges/' + default_branch + 'coverage.svg' %}
41
- {% set remote_url_pipeline_badge = remote_url_https + '/badges/' + default_branch + 'pipeline.svg' %}
40
+ {% set remote_url_coverage_badge = remote_url_https + '/badges/' + default_branch + '/ coverage.svg' %}
41
+ {% set remote_url_pipeline_badge = remote_url_https + '/badges/' + default_branch + '/ pipeline.svg' %}
42
42
{% endif %}
43
43
44
44
{% set cli_command = package_name | replace("_", "-") %}
You can’t perform that action at this time.
0 commit comments