Skip to content

Commit 051ccec

Browse files
committed
Release updates
1 parent d3853af commit 051ccec

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ jobs:
6262
python setup.py sdist bdist_wheel
6363
twine upload dist/*
6464
65+
- name: Checkout develop branch
66+
uses: actions/checkout@v2
67+
with:
68+
ref: 'develop'
69+
fetch-depth: 0
70+
6571
- name: Update CHANGELOG.md
6672
id: changelogUpdate
6773
run: |
@@ -74,7 +80,6 @@ jobs:
7480
mv ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} ${{ env.CHANGE_LOG_FILE }}
7581
git add ${{ env.CHANGE_LOG_FILE }}
7682
git commit -m "Changelog update"
77-
git push
7883
7984
- name: Read changelog Entry
8085
id: readChangelogEntry
@@ -95,12 +100,6 @@ jobs:
95100
draft: false
96101
prerelease: false
97102

98-
- name: Checkout develop branch
99-
uses: actions/checkout@v2
100-
with:
101-
ref: 'develop'
102-
fetch-depth: 0
103-
104103
- name: Merge release branch into develop
105104
id: mergeIntoDevelop
106105
run: |
@@ -118,4 +117,4 @@ jobs:
118117
mv ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }} ${{ env.VERSION_FILE }}
119118
git add ${{ env.VERSION_FILE }}
120119
git commit -m "Version update"
121-
git push origin develop
120+
git push

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [5.2.1]
46
### Fixed
57
- Issue [#180](https://github.com/reportportal/client-Python/issues/180):
68
logger crash on attachments, by @HardNorth
79
### Changed
8-
- Log processing does not stop on the first error now.
10+
- Log processing does not stop on the first error now, by @HardNorth
911

1012
## [5.2.0]
1113
### Changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
__version__ = '5.2.1'
5+
__version__ = '5.2.2'
66

77
with open('requirements.txt') as f:
88
requirements = f.read().splitlines()

0 commit comments

Comments
 (0)