Skip to content

Commit

Permalink
Merge pull request #41 from ssenart/develop
Browse files Browse the repository at this point in the history
Prepare version 1.1.2
  • Loading branch information
ssenart committed Jan 8, 2022
2 parents 6e2b557 + 17dc840 commit bbcfa40
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.2](https://github.com/ssenart/PyGazpar/compare/1.1.1...1.1.2) - 2022-01-08
### Fixed
- [#39](https://github.com/ssenart/PyGazpar/issues/39): NameError: name 'Frequency' is not defined (thanks [nicolas-r](https://github.com/nicolas-r)).
- Numéro PCE pas forcément un nombre: Le numéro PCE de mon compteur commence par un 0 et lorsque j'essaie de récupérer mes relevés avec PyGazpar, une erreur de l'API est renvoyée. Le numéro PCE ne doit donc pas être converti en int lorsque il est passé en paramètre mais doit être une string (thanks [maelgangloff](https://github.com/maelgangloff)).

## [1.1.1](https://github.com/ssenart/PyGazpar/compare/1.1.0...1.1.1) - 2021-12-02
### Changed
- Exact same version as 1.1.0 except that 1.1.0 has not been published on Pypi repository.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import pygazpar
client = pygazpar.Client(username='your login',
password='your password',
pceIdentifier='your PCE identifier',
meterReadingFrequency=Frequency.DAILY,
meterReadingFrequency=pygazpar.Frequency.DAILY,
lastNDays=10,
tmpDirectory='/tmp/pygazpar')

Expand Down Expand Up @@ -123,7 +123,7 @@ import pygazpar
client = pygazpar.Client(username='your login',
password='your password',
pceIdentifier='your PCE identifier',
meterReadingFrequency=Frequency.WEEKLY,
meterReadingFrequency=pygazpar.Frequency.WEEKLY,
lastNDays=10,
tmpDirectory='/tmp/pygazpar')

Expand Down Expand Up @@ -172,7 +172,7 @@ import pygazpar
client = pygazpar.Client(username='your login',
password='your password',
pceIdentifier='your PCE identifier',
meterReadingFrequency=Frequency.MONTHLY,
meterReadingFrequency=pygazpar.Frequency.MONTHLY,
lastNDays=10,
tmpDirectory='/tmp/pygazpar')

Expand Down
Binary file removed drivers/geckodriver
Binary file not shown.
Binary file removed drivers/geckodriver.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion pygazpar/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
required=True,
help="GRDF password")
parser.add_argument("-c", "--pce",
required=True,,
required=True,
help="GRDF PCE identifier")
parser.add_argument("-t", "--tmpdir",
required=False,
Expand Down

0 comments on commit bbcfa40

Please sign in to comment.