File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 62
62
python setup.py sdist bdist_wheel
63
63
twine upload dist/*
64
64
65
+ - name : Checkout develop branch
66
+ uses : actions/checkout@v2
67
+ with :
68
+ ref : ' develop'
69
+ fetch-depth : 0
70
+
65
71
- name : Update CHANGELOG.md
66
72
id : changelogUpdate
67
73
run : |
74
80
mv ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} ${{ env.CHANGE_LOG_FILE }}
75
81
git add ${{ env.CHANGE_LOG_FILE }}
76
82
git commit -m "Changelog update"
77
- git push
78
83
79
84
- name : Read changelog Entry
80
85
id : readChangelogEntry
@@ -95,12 +100,6 @@ jobs:
95
100
draft : false
96
101
prerelease : false
97
102
98
- - name : Checkout develop branch
99
- uses : actions/checkout@v2
100
- with :
101
- ref : ' develop'
102
- fetch-depth : 0
103
-
104
103
- name : Merge release branch into develop
105
104
id : mergeIntoDevelop
106
105
run : |
@@ -118,4 +117,4 @@ jobs:
118
117
mv ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }} ${{ env.VERSION_FILE }}
119
118
git add ${{ env.VERSION_FILE }}
120
119
git commit -m "Version update"
121
- git push origin develop
120
+ git push
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## [ Unreleased]
4
+
5
+ ## [ 5.2.1]
4
6
### Fixed
5
7
- Issue [ #180 ] ( https://github.com/reportportal/client-Python/issues/180 ) :
6
8
logger crash on attachments, by @HardNorth
7
9
### 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
9
11
10
12
## [ 5.2.0]
11
13
### Changed
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup , find_packages
4
4
5
- __version__ = '5.2.1 '
5
+ __version__ = '5.2.2 '
6
6
7
7
with open ('requirements.txt' ) as f :
8
8
requirements = f .read ().splitlines ()
You can’t perform that action at this time.
0 commit comments