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 11[bumpversion]
2- commit = True
2+ commit = False
33tag = False
4- current_version = 1.1.2
4+ current_version = 1.2.0
55
66[bumpversion:file:setup.py]
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) and [ Keep a Changelog] ( http://keepachangelog.com/ ) .
55
6+
67## Unreleased
8+ ---
9+
10+ ### New
11+
12+ ### Changes
13+
14+ ### Fixes
15+
16+ ### Breaks
17+
18+
19+ ## 1.2.0 - (2022-08-04)
720
821### New
922* Allow to load external collectors with fully qualified dotted notation
1023
1124### Changes
1225* Switch sphinx from recommonmark to myst_parser
1326
14- ### Fixes
1527
1628### Breaks
1729* 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
3939publish : check
4040 $(TWINE_CMD ) upload $(TWINE_OPTIONS ) dist/*
4141
42+ release-% :
43+ bumpversion $*
44+ changelog release --$*
45+ make doc
46+
4247clean :
4348 rm -Rf docs/{build,_build} {build,dist} * .egg-info coverage.xml .pytest_cache
4449 find . -name ' *.pyc' -exec rm -f {} +
Original file line number Diff line number Diff line change 77
88setup (
99 name = 'p3exporter' ,
10- version = '1.1.2 ' ,
10+ version = '1.2.0 ' ,
1111 description = 'Python Programmable Prometheus exporter' ,
1212 long_description = long_description ,
1313 long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments