From e10f63816fb11a236e4df2befa03d0ae9d51b60e Mon Sep 17 00:00:00 2001 From: Mohammad Ahtasham ul Hassan <60315450+aht007@users.noreply.github.com> Date: Tue, 1 Feb 2022 17:35:37 +0500 Subject: [PATCH] fix: fixed issue with workflow (#572) --- .github/{ => workflows}/pypi-publish.yml | 0 CHANGELOG.rst | 5 +++++ xblock/__init__.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) rename .github/{ => workflows}/pypi-publish.yml (100%) diff --git a/.github/pypi-publish.yml b/.github/workflows/pypi-publish.yml similarity index 100% rename from .github/pypi-publish.yml rename to .github/workflows/pypi-publish.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0707bef2f..dc9568a4a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Change history for XBlock These are notable changes in XBlock. +1.6.1 - 2022-01-28 +------------------ + +* Fix Release Issue with PyPi release workflow + 1.6.0 - 2022-01-25 ------------------ diff --git a/xblock/__init__.py b/xblock/__init__.py index 387f4c567..15dfb1401 100644 --- a/xblock/__init__.py +++ b/xblock/__init__.py @@ -27,4 +27,4 @@ def __init__(self, *args, **kwargs): # without causing a circular import xblock.fields.XBlockMixin = XBlockMixin -__version__ = '1.6.0' +__version__ = '1.6.1'