diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b986536 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + + + +## 2.0.0.post2 + +### Added +- Added this changelog. + +### Fixed +- Fixed code completion for `DCMotor` and `Motor` classes in MS Python VS Code extension. +- Fixed missing `DCMotor` type in `ev3devices`. diff --git a/pyproject.toml b/pyproject.toml index 2a47707..af962fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybricks" -version = "2.0.0.post1" +version = "2.0.0.post2" description = "Documentation and user-API stubs for Pybricks MicroPython" authors = ["The Pybricks Authors "] maintainers = ["Laurens Valk ", "David Lechner " ] @@ -12,7 +12,7 @@ documentation = "https://pybricks.github.io/ev3-micropython/" classifiers = [ "Programming Language :: Python :: Implementation :: MicroPython", ] -include = ["pybricks/py.typed"] +include = ["CHANGELOG.md", "pybricks/py.typed"] [tool.poetry.dependencies] python = "^3.8"