diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 645a622..4481018 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -1.3.2.dev8+gd45a443.d20240722 (2024-07-23) -========================================== +1.4 (2024-08-17) +================ Deprecations and Removals ------------------------- @@ -19,6 +19,7 @@ Features by mentioning it in ``--branch``/``--b`` and any can be excluded by adding a ``-`` infront of the branch/tag name in the cli argument. Like ``--branch main,-v1.0,v2.0`` will select ``main``, ``v2.0`` and will exclude ``v1.0``. (`#69 `__) +- Adds windows compatibility. (`#76 `__) - Added regex support for selecting and excluding branches and tags. Now, any branch can be selected by mentioning it in ``--branch``/ ``--b`` and any can be excluded by adding a ``-`` infront of the branch/tag name in the argument. @@ -30,6 +31,15 @@ Features Note: selecting a branch takes presidence over excluding one. (`#80 `__) +1.3.2 (2024-03-08) +================== + +Bug Fixes +--------- + +- Fixed `branch not found` bug when selecting branches using `-b` in CLI. + + 1.3.1 (2024-02-28) ================== @@ -70,7 +80,7 @@ Added/Improved Documentation 1.2 (2024-02-01) -========================================= +================ Deprecations and Removals ------------------------- diff --git a/docs/changes/47.feature.rst b/docs/changes/47.feature.rst deleted file mode 100644 index ea38941..0000000 --- a/docs/changes/47.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -Added a feature to either have the vanilla versions selector menu or have it as a floating badge via -using either ``--floating-badge`` or ``--badge`` option available through command-line. diff --git a/docs/changes/47.removal.rst b/docs/changes/47.removal.rst deleted file mode 100644 index 41305fe..0000000 --- a/docs/changes/47.removal.rst +++ /dev/null @@ -1,3 +0,0 @@ -The theme specific versions selector menu/badge is deprecated in favour of consistent experience -across themes. Now, every theme will have the selector menu either in its sidebar or in its -footer(if the theme supports it). diff --git a/docs/changes/67.removal.rst b/docs/changes/67.removal.rst deleted file mode 100644 index d9ef7e1..0000000 --- a/docs/changes/67.removal.rst +++ /dev/null @@ -1 +0,0 @@ -The CLI option ``--branches`` is removed in favour of ``--branch`` and ``-b``. diff --git a/docs/changes/69.feature.rst b/docs/changes/69.feature.rst deleted file mode 100644 index 92121e2..0000000 --- a/docs/changes/69.feature.rst +++ /dev/null @@ -1,4 +0,0 @@ -Modified the ``--branch``/ ``-b`` to accomodate branch selection/exclusion. Now, any branch can be selected -by mentioning it in ``--branch``/``--b`` and any can be excluded by adding a ``-`` infront of the branch/tag -name in the cli argument. -Like ``--branch main,-v1.0,v2.0`` will select ``main``, ``v2.0`` and will exclude ``v1.0``. diff --git a/docs/changes/76.feature.rst b/docs/changes/76.feature.rst deleted file mode 100644 index 4b98f4a..0000000 --- a/docs/changes/76.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Adds windows compatibility. diff --git a/docs/changes/80.feature.rst b/docs/changes/80.feature.rst deleted file mode 100644 index 5a04822..0000000 --- a/docs/changes/80.feature.rst +++ /dev/null @@ -1,9 +0,0 @@ -Added regex support for selecting and excluding branches and tags. -Now, any branch can be selected by mentioning it in ``--branch``/ ``--b`` and any can be excluded by adding a ``-`` -infront of the branch/tag name in the argument. - -Suppose there are 3 branches and tags: ``main, v1.0, v2.0``. -The argument ``--branch main,-v*`` will select ``main`` and will exclude ``v1.0`` and ``v2.0``. -Similarly, the argument ``--branch -main,v*`` will select ``v1.0`` and ``v2.0`` and will exclude ``main``. - -Note: selecting a branch takes presidence over excluding one.