From 5f39966223683008b0d8e2edce1280d7a78ead73 Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 24 Oct 2024 12:07:40 +0200 Subject: [PATCH] fix: Fixed tag pushing and changelog --- .github/workflows/ci.yml | 7 +++---- CHANGELOG.md | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4439a0e..9467201 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 645831d..e85c963 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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