File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- commit = True
2
+ commit = False
3
3
tag = False
4
- current_version = 1.1.2
4
+ current_version = 1.2.0
5
5
6
6
[bumpversion:file:setup.py]
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) and [ Keep a Changelog] ( http://keepachangelog.com/ ) .
5
5
6
+
6
7
## Unreleased
8
+ ---
9
+
10
+ ### New
11
+
12
+ ### Changes
13
+
14
+ ### Fixes
15
+
16
+ ### Breaks
17
+
18
+
19
+ ## 1.2.0 - (2022-08-04)
7
20
8
21
### New
9
22
* Allow to load external collectors with fully qualified dotted notation
10
23
11
24
### Changes
12
25
* Switch sphinx from recommonmark to myst_parser
13
26
14
- ### Fixes
15
27
16
28
### Breaks
17
29
* We remove support for python prior than 3.7
Original file line number Diff line number Diff line change @@ -39,6 +39,11 @@ check: dist
39
39
publish : check
40
40
$(TWINE_CMD ) upload $(TWINE_OPTIONS ) dist/*
41
41
42
+ release-% :
43
+ bumpversion $*
44
+ changelog release --$*
45
+ make doc
46
+
42
47
clean :
43
48
rm -Rf docs/{build,_build} {build,dist} * .egg-info coverage.xml .pytest_cache
44
49
find . -name ' *.pyc' -exec rm -f {} +
Original file line number Diff line number Diff line change 7
7
8
8
setup (
9
9
name = 'p3exporter' ,
10
- version = '1.1.2 ' ,
10
+ version = '1.2.0 ' ,
11
11
description = 'Python Programmable Prometheus exporter' ,
12
12
long_description = long_description ,
13
13
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments