Skip to content

Commit df4207a

Browse files
committed
v1.0.0
1 parent 2d6bff1 commit df4207a

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [1.0.0] - 2021-03-20
11+
1012
### Added
1113

12-
- Function to map the erro value, now is possibly to clip the error value, i.e., [-pi, pi[
14+
- Function to map the error value to a different domain
1315

1416
- Typing information through a stub file so that users of the library can use e.g.
1517
[mypy](https://github.com/python/mypy) to type check their code
1618

1719
- This project now uses the [Black code style](https://github.com/psf/black)
1820

19-
- The PID class now has a \_\_repr\_\_() method, meaning that objects of this type can be printed
21+
- The PID class now has a `__repr__()` method, meaning that objects of this type can be printed
2022
directly for use during development
23+
24+
- MANIFEST.in file to ensure all necessary files are included in the source distribution
2125

2226
### Fixed
2327

@@ -79,7 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7983

8084
- Initial implementation
8185

82-
[Unreleased]: https://github.com/m-lundberg/simple-pid/compare/v0.2.4...HEAD
86+
[Unreleased]: https://github.com/m-lundberg/simple-pid/compare/v1.0.0...HEAD
87+
[1.0.0]: https://github.com/m-lundberg/simple-pid/compare/v0.2.4...v1.0.0
8388
[0.2.4]: https://github.com/m-lundberg/simple-pid/compare/v0.2.3...v0.2.4
8489
[0.2.3]: https://github.com/m-lundberg/simple-pid/compare/v0.2.2...v0.2.3
8590
[0.2.2]: https://github.com/m-lundberg/simple-pid/compare/v0.2.1...v0.2.2

examples/water_boiler/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ matplotlib==3.1.0
44
numpy==1.16.4
55
pyparsing==2.4.0
66
python-dateutil==2.8.0
7-
simple-pid==0.2.1
7+
simple-pid==1.0.0
88
six==1.12.0

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
setup(
1313
name='simple-pid',
14-
version='0.2.4',
14+
version='1.0.0',
1515
description='A simple, easy to use PID controller',
1616
long_description=long_description,
1717
long_description_content_type='text/markdown',
1818
url='https://github.com/m-lundberg/simple-pid',
1919
author='Martin Lundberg',
2020
license='MIT',
2121
classifiers=[
22-
'Development Status :: 4 - Beta',
22+
'Development Status :: 5 - Production/Stable',
2323
'License :: OSI Approved :: MIT License',
2424
'Programming Language :: Python :: 2',
2525
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)