Skip to content

Commit f1c445b

Browse files
committed
Bump version to 6.1.11
1 parent b88c393 commit f1c445b

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Unlock the true potential of embedded software development with
1717
PlatformIO's collaborative ecosystem, embracing declarative principles,
1818
test-driven methodologies, and modern toolchains for unrivaled success.
1919

20-
6.1.11 (2023-??-??)
20+
6.1.11 (2023-08-31)
2121
~~~~~~~~~~~~~~~~~~~
2222

2323
* Resolved a possible issue that may cause generated projects for `PlatformIO IDE for VSCode <https://docs.platformio.org/en/latest/integration/ide/vscode.html>`__ to fail to launch a debug session because of a missing "objdump" binary when GDB is not part of the toolchain package

docs

Submodule docs updated from fb5dbb9 to fb83b09

platformio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = (6, 1, "11a2")
15+
VERSION = (6, 1, 11)
1616
__version__ = ".".join([str(s) for s in VERSION])
1717

1818
__title__ = "platformio"

tests/commands/pkg/test_install.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import pytest
2020

21-
from platformio import fs
21+
from platformio import __core_packages__, fs
2222
from platformio.package.commands.install import package_install_cmd
2323
from platformio.package.manager.library import LibraryPackageManager
2424
from platformio.package.manager.platform import PlatformPackageManager
@@ -148,7 +148,7 @@ def test_skip_dependencies(
148148
),
149149
PackageSpec("ESPAsyncWebServer-esphome@2.1.0"),
150150
]
151-
assert len(ToolPackageManager().get_installed()) == 0
151+
assert len(ToolPackageManager().get_installed()) == 1 # SCons
152152

153153

154154
def test_baremetal_project(
@@ -177,6 +177,7 @@ def test_baremetal_project(
177177
),
178178
]
179179
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [
180+
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]),
180181
PackageSpec("toolchain-atmelavr@1.70300.191015"),
181182
]
182183

@@ -209,6 +210,7 @@ def test_project(
209210
]
210211
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [
211212
PackageSpec("framework-arduino-avr-attiny@1.5.2"),
213+
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]),
212214
PackageSpec("toolchain-atmelavr@1.70300.191015"),
213215
]
214216
assert config.get("env:devkit", "lib_deps") == [

tests/commands/pkg/test_uninstall.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ def test_project(clirunner, validate_cliresult, isolated_pio_core, tmp_path):
198198
assert pkgs_to_names(lm.get_installed()) == ["DallasTemperature", "OneWire"]
199199
assert pkgs_to_names(ToolPackageManager().get_installed()) == [
200200
"framework-arduino-avr-attiny",
201+
"tool-scons",
201202
"toolchain-atmelavr",
202203
]
203204
assert config.get("env:devkit", "lib_deps") == [
@@ -224,7 +225,7 @@ def test_project(clirunner, validate_cliresult, isolated_pio_core, tmp_path):
224225
os.path.join(config.get("platformio", "libdeps_dir"), "devkit")
225226
)
226227
assert not pkgs_to_names(lm.get_installed())
227-
assert not pkgs_to_names(ToolPackageManager().get_installed())
228+
assert pkgs_to_names(ToolPackageManager().get_installed()) == ["tool-scons"]
228229
assert config.get("env:devkit", "lib_deps") == [
229230
"milesburton/DallasTemperature@^3.9.1"
230231
]

tests/commands/pkg/test_update.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import os
1818

19-
from platformio import fs
19+
from platformio import __core_packages__, fs
2020
from platformio.package.commands.install import package_install_cmd
2121
from platformio.package.commands.update import package_update_cmd
2222
from platformio.package.exception import UnknownPackageError
@@ -172,6 +172,7 @@ def test_project(
172172
]
173173
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [
174174
PackageSpec("framework-arduino-avr-attiny@1.3.2"),
175+
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]),
175176
PackageSpec("toolchain-atmelavr@1.50400.190710"),
176177
]
177178
assert config.get("env:devkit", "lib_deps") == [
@@ -201,6 +202,7 @@ def test_project(
201202
]
202203
assert pkgs_to_specs(ToolPackageManager().get_installed()) == [
203204
PackageSpec("framework-arduino-avr-attiny@1.3.2"),
205+
PackageSpec("tool-scons@%s" % __core_packages__["tool-scons"][1:]),
204206
PackageSpec("toolchain-atmelavr@1.70300.191015"),
205207
PackageSpec("toolchain-atmelavr@1.50400.190710"),
206208
]

0 commit comments

Comments
 (0)