v1.4-rc
Pre-releaseWhat's Changed
- Update issue templates by @devanshshukla99 in #64
- Added pr template by @devanshshukla99 in #63
- Consistent version selector menu across themes by @devanshshukla99 in #47
- Added more themes to documentation by @devanshshukla99 in #66
- Removed
--branches
in favour of--branch
and-b
by @devanshshukla99 in #67 - Select/exclude a branch from processing by @devanshshukla99 in #69
- Added regex support for selecting and excluding branches and tags by @devanshshukla99 in #80
- windows compatiblity by @devanshshukla99 in #76
- 1.4 rc by @devanshshukla99 in #81
Deprecations and Removals
- 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). (#47)
- The CLI option
--branches
is removed in favour of--branch
and-b
. (#67)
Features
-
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. (#47) -
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 selectmain
,v2.0
and will excludev1.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.Suppose there are 3 branches and tags:
main, v1.0, v2.0
. The argument--branch main,-v*
will selectmain
and will excludev1.0
andv2.0
. Similarly, the argument--branch -main,v*
will selectv1.0
andv2.0
and will excludemain
.Note: selecting a branch takes presidence over excluding one. (#80)
Full Changelog: v1.3.1...v1.4