Skip to content

Commit

Permalink
fix: Fixed tag pushing and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Oct 24, 2024
1 parent b7a7a57 commit 66e3691
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,17 @@ jobs:
major-identifier: "breaking:"
release-branch: ${{ github.head_ref }}

- name: Create Tag
- name: Create & Push Tag
if: github.head_ref == 'master' || github.head_ref == 'dev'
run: |
if [ "${{ github.head_ref }}" == "master" ]; then
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
fi
- name: Push tag
run: git push origin ${{ steps.git_version.outputs.version }}

- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## 2.0.0

- Fixed #1
- Fixed #3

Notes:

You will need to change calls to `create_obj_from_data` according to #1 (rename additonal_data to additional_data)

You will need to change calls to `update_obj_from_data` according to #3 (if you supplied `partial`, you will need to reverse it: `true` -> `false` and `false` -> `true`)

## 1.3.0

- Addition of pagination proxy and pagination=off functionality (Thanks to @vikbhas)

## 1.2.5

- Bumped dependencies

## 1.2.4

- Enabled newer versions for all dependencies
Expand Down

0 comments on commit 66e3691

Please sign in to comment.