Skip to content

Commit

Permalink
bump: version 1.3.4 → 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hfudev committed Sep 13, 2023
1 parent 1ebc81c commit 57cfd98
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## v1.3.5 (2023-09-13)

### Feat

- Support hard_reset without stub
- add local cache for port-target-cache between session

## v1.3.4 (2023-07-10)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.3.4"
version = "1.3.5"
tag_format = "v$version"
version_files = [
"pytest-embedded/pytest_embedded/__init__.py",
Expand Down
4 changes: 2 additions & 2 deletions pytest-embedded-arduino/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded~=1.3.4",
"pytest-embedded~=1.3.5",
]

[project.optional-dependencies]
serial = [
"pytest-embedded-serial-esp~=1.3.4"
"pytest-embedded-serial-esp~=1.3.5"
]

[project.urls]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
'ArduinoSerial',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
4 changes: 2 additions & 2 deletions pytest-embedded-idf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded~=1.3.4",
"pytest-embedded~=1.3.5",
]

[project.optional-dependencies]
serial = [
"pytest-embedded-serial-esp~=1.3.4",
"pytest-embedded-serial-esp~=1.3.5",
"esp-coredump~=1.0",
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-embedded-idf/pytest_embedded_idf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
'UnittestMenuCase',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
2 changes: 1 addition & 1 deletion pytest-embedded-jtag/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded-serial~=1.3.4",
"pytest-embedded-serial~=1.3.5",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion pytest-embedded-jtag/pytest_embedded_jtag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
'Gdb',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
4 changes: 2 additions & 2 deletions pytest-embedded-qemu/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded~=1.3.4",
"pytest-embedded~=1.3.5",
]

[project.optional-dependencies]
idf = [
"pytest-embedded-idf~=1.3.4",
"pytest-embedded-idf~=1.3.5",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion pytest-embedded-qemu/pytest_embedded_qemu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
'QemuDut',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
2 changes: 1 addition & 1 deletion pytest-embedded-serial-esp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded-serial~=1.3.4",
"pytest-embedded-serial~=1.3.5",
"esptool~=4.5",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
'EspSerial',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
2 changes: 1 addition & 1 deletion pytest-embedded-serial/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dynamic = ["version", "description"]
requires-python = ">=3.7"

dependencies = [
"pytest-embedded~=1.3.4",
"pytest-embedded~=1.3.5",
"pyserial~=3.0",
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-embedded-serial/pytest_embedded_serial/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
'SerialDut',
]

__version__ = '1.3.4'
__version__ = '1.3.5'
2 changes: 1 addition & 1 deletion pytest-embedded/pytest_embedded/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

__all__ = ['App', 'Dut']

__version__ = '1.3.4'
__version__ = '1.3.5'

0 comments on commit 57cfd98

Please sign in to comment.