Skip to content

Commit 63ca7f0

Browse files
committed
v1.0.0-alpha.3
1 parent f69b94b commit 63ca7f0

File tree

2 files changed

+49
-48
lines changed

2 files changed

+49
-48
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [1.0.0-alpha.3]
88
### Changed
99
- Print BLE download progress after chunk is complete instead of before.
1010
### Fixed
@@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424
- Typo in `pip` arguments `README.md`.
2525

2626

27-
[Unreleased]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.2..HEAD
27+
[Unreleased]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.3..HEAD
28+
[1.0.0-alpha.3]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
2829
[1.0.0-alpha.2]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
2930
[1.0.0-alpha.1]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.0...v1.0.0-alpha.1

pyproject.toml

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
[tool.poetry]
2-
name = "pybricksdev"
3-
version = "1.0.0-alpha.2"
4-
description = "Pybricks developer tools"
5-
authors = ["The Pybricks Authors <[email protected]>"]
6-
maintainers = ["Laurens Valk <[email protected]>", "David Lechner <[email protected]>" ]
7-
license = "MIT"
8-
readme = "README.md"
9-
homepage = "https://pybricks.com"
10-
repository = "https://github.com/pybricks/pybricksdev"
11-
classifiers = [
12-
"Development Status :: 3 - Alpha",
13-
"Intended Audience :: Developers",
14-
"Natural Language :: English",
15-
"Operating System :: OS Independent",
16-
]
17-
include = [
18-
"AUTHORS.md"
19-
]
20-
21-
[tool.poetry.scripts]
22-
pybricksdev = 'pybricksdev.cli:main'
23-
24-
[tool.poetry.dependencies]
25-
aioserial = "^1.3.0"
26-
argcomplete = "^1.11.1"
27-
asyncssh = "^2.2.1"
28-
bleak = "^0.11.0"
29-
mpy-cross = "==1.12"
30-
python = "~3.8"
31-
tqdm = "^4.46.1"
32-
validators = "^0.18.2"
33-
pyusb = "^1.0.2"
34-
semver = "^2.13.0"
35-
36-
[tool.poetry.dev-dependencies]
37-
flake8 = "^3.8.3"
38-
pytest = "^5.2"
39-
pybricks = { git = "https://github.com/pybricks/pybricks-api.git", branch = "master" }
40-
notebook = "^6.0.3"
41-
ipykernel = "^5.3.1"
42-
nbstripout = "^0.3.8"
43-
44-
[build-system]
45-
requires = ["poetry>=0.12"]
46-
build-backend = "poetry.masonry.api"
1+
[tool.poetry]
2+
name = "pybricksdev"
3+
version = "1.0.0-alpha.3"
4+
description = "Pybricks developer tools"
5+
authors = ["The Pybricks Authors <[email protected]>"]
6+
maintainers = ["Laurens Valk <[email protected]>", "David Lechner <[email protected]>" ]
7+
license = "MIT"
8+
readme = "README.md"
9+
homepage = "https://pybricks.com"
10+
repository = "https://github.com/pybricks/pybricksdev"
11+
classifiers = [
12+
"Development Status :: 3 - Alpha",
13+
"Intended Audience :: Developers",
14+
"Natural Language :: English",
15+
"Operating System :: OS Independent",
16+
]
17+
include = [
18+
"AUTHORS.md"
19+
]
20+
21+
[tool.poetry.scripts]
22+
pybricksdev = 'pybricksdev.cli:main'
23+
24+
[tool.poetry.dependencies]
25+
aioserial = "^1.3.0"
26+
argcomplete = "^1.11.1"
27+
asyncssh = "^2.2.1"
28+
bleak = "^0.11.0"
29+
mpy-cross = "==1.12"
30+
python = "~3.8"
31+
tqdm = "^4.46.1"
32+
validators = "^0.18.2"
33+
pyusb = "^1.0.2"
34+
semver = "^2.13.0"
35+
36+
[tool.poetry.dev-dependencies]
37+
flake8 = "^3.8.3"
38+
pytest = "^5.2"
39+
pybricks = { git = "https://github.com/pybricks/pybricks-api.git", branch = "master" }
40+
notebook = "^6.0.3"
41+
ipykernel = "^5.3.1"
42+
nbstripout = "^0.3.8"
43+
44+
[build-system]
45+
requires = ["poetry>=0.12"]
46+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)