-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use is_tag in doc pipeline * Bump version to 2.4.3
- Loading branch information
Showing
4 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,12 +85,19 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- id: branch-name | ||
uses: tj-actions/[email protected] | ||
- name: Ensure we can checkout gh-pages | ||
- name: Get branch names | ||
id: branch-names | ||
uses: tj-actions/branch-names@v8 | ||
- name: Ensure we can checkout gh-pages for release (${{ steps.branch-names.outputs.tag }}) | ||
if: steps.branch-names.outputs.is_tag == 'true' | ||
run: | | ||
git checkout gh-pages | ||
git checkout ${{ steps.branch-name.outputs.current_branch }} | ||
git checkout ${{ steps.branch-names.outputs.tag }} | ||
- name: Ensure we can checkout gh-pages for pr (${{ steps.branch-names.outputs.current_branch }}) | ||
if: steps.branch-names.outputs.is_tag == 'false' | ||
run: | | ||
git checkout gh-pages | ||
git checkout ${{ steps.branch-names.outputs.current_branch }} | ||
- name: Setup Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Top level of MQTT IO package. | ||
""" | ||
|
||
VERSION = "2.4.2" | ||
VERSION = "2.4.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "mqtt-io" | ||
version = "2.4.2" | ||
version = "2.4.3" | ||
description = "Expose GPIO modules (Raspberry Pi, Beaglebone, PCF8754, PiFace2 etc.), digital sensors (LM75 etc.) and serial streams to an MQTT server for remote control and monitoring." | ||
readme = "README.md" | ||
authors = ["Ellis Percival <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[bumpversion] | ||
current_version = 2.4.2 | ||
current_version = 2.4.3 | ||
commit = True | ||
tag = True | ||
tag_name = {new_version} | ||
message = Bump version to {new_version} | ||
|
||
[bumpversion:file:pyproject.toml] | ||
|
||
[bumpversion:file:mqtt_io/__init__.py] |