Skip to content

Commit c90221a

Browse files
Merge pull request #23 from nicholasmhughes/fix-deps-for-salt-conflict
Fix deps for salt conflict
2 parents 4f37ffa + 8bd5080 commit c90221a

File tree

3 files changed

+25
-32
lines changed

3 files changed

+25
-32
lines changed

CHANGELOG.md

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,50 @@ This project uses [Semantic Versioning](https://semver.org/) - MAJOR.MINOR.PATCH
44

55
# Changelog
66

7-
Saltext.Prometheus 2.0.2 (2023-03-13)
8-
=====================================
7+
# Saltext.Prometheus 2.0.3 (2023-08-14)
98

10-
Fixed
11-
-----
9+
### Fixed
10+
11+
- Fix salt deps by removing them (#22)
12+
13+
14+
# Saltext.Prometheus 2.0.2 (2023-03-13)
15+
16+
### Fixed
1217

1318
- Fix mode set to int octal instead of octal notation (#21)
1419

1520

16-
Saltext.Prometheus 2.0.1 (2023-03-12)
17-
=====================================
21+
# Saltext.Prometheus 2.0.1 (2023-03-12)
1822

19-
Fixed
20-
-----
23+
### Fixed
2124

2225
- Fix KeyError thrown when requiring state is not run (#20)
2326

2427

25-
Saltext.Prometheus 2.0.0 (2022-10-13)
26-
=====================================
28+
# Saltext.Prometheus 2.0.0 (2022-10-13)
2729

28-
Added
29-
-----
30+
### Added
3031

3132
- Add ability to use prometheus_client library (#2)
3233

3334

34-
Saltext.Prometheus 1.1.1 (2022-05-04)
35-
=====================================
35+
# Saltext.Prometheus 1.1.1 (2022-05-04)
3636

37-
Added
38-
-----
37+
### Added
3938

4039
- Hide raw version numbers to normalize data on release version (#6)
4140

4241

43-
Saltext.Prometheus 1.0.1 (2022-03-18)
44-
=====================================
42+
# Saltext.Prometheus 1.0.1 (2022-03-18)
4543

46-
Fixed
47-
-----
44+
### Fixed
4845

4946
- Fix textfile output to view None result as success (#3)
5047

5148

52-
Saltext.Prometheus 1.0.0 (2022-01-29)
53-
=====================================
49+
# Saltext.Prometheus 1.0.0 (2022-01-29)
5450

55-
Added
56-
-----
51+
### Added
5752

5853
- Initial version of Prometheus Text Exposition Format Returner

setup.cfg

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ setup_requires =
3838
setuptools>=50.3.2
3939
setuptools-declarative-requirements
4040
install_requires =
41-
salt>=3002
42-
jinja2<=3.0.1
4341
prometheus_client
4442
# Add other module install requirements above this line
4543

@@ -57,17 +55,17 @@ salt.loader=
5755
[options.extras_require]
5856
tests =
5957
mock==3.0.5
60-
pytest==6.2.4
61-
pytest-salt-factories==0.906.0
62-
jinja2<3.1
58+
pytest==7.2.0
59+
pytest-salt-factories>=1.0.0rc23
60+
Jinja2
6361
dev =
64-
nox==2021.6.12
62+
nox==2022.1.7
6563
pre-commit==2.13.0
6664
pylint<2.14.0
6765
SaltPyLint
6866
docs =
6967
sphinx>=3.5.1
70-
jinja2<3.1
68+
Jinja2
7169
furo
7270
sphinx-copybutton
7371
sphinx-prompt

src/saltext/prometheus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# pylint: disable=missing-module-docstring
2-
__version__ = "2.0.2"
2+
__version__ = "2.0.3"

0 commit comments

Comments
 (0)