Compare commits

...

5 Commits

2 changed files with 5 additions and 4 deletions

View File

@@ -80,8 +80,9 @@ jobs:
git tag ${{ steps.git_version.outputs.version }}
git push origin ${{ steps.git_version.outputs.version }}
elif [ "${{ github.head_ref }}" == "dev" ]; then
git tag ${{ steps.git_version.outputs.version }}-rc
git push origin ${{ steps.git_version.outputs.version }}-rc
calculatedSha=$(git rev-parse --short ${{ github.sha }})
git tag ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
git push origin ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
fi
- name: Set up Python

View File

@@ -4,8 +4,8 @@ All notable changes to this project will be documented in this file.
## 2.0.0
- Fixed #1
- Fixed #3
- Fixed #1 Rename misspelled additonal_data to additional_data on create_obj_from_data
- Fixed #3 Inverse partial flag: bool = False because it was wrong on update_obj_from_data
Notes: