Skip to content

Commit d224672

Browse files
github-actions[bot]b4b4r07babarot
authored
Release for v2.4.1 (#194)
* [tagpr] prepare for the next release * [tagpr] update CHANGELOG.md * Update .tagpr * Bump --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Masaki ISHIYAMA <[email protected]> Co-authored-by: b4b4r07 <[email protected]>
1 parent 0fed6c8 commit d224672

File tree

4 files changed

+134
-1
lines changed

4 files changed

+134
-1
lines changed

.github/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- tagpr

.tagpr

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# config file for the tagpr in git config format
2+
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3+
# CONFIGURATIONS:
4+
# tagpr.releaseBranch
5+
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6+
# creates or updates a pull request as a release candidate, or tags when they are merged.
7+
#
8+
# tagpr.versionFile
9+
# Versioning file containing the semantic version needed to be updated at release.
10+
# It will be synchronized with the "git tag".
11+
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12+
# Sometimes the source code file, such as version.go or Bar.pm, is used.
13+
# If you do not want to use versioning files but only git tags, specify the "-" string here.
14+
# You can specify multiple version files by comma separated strings.
15+
#
16+
# tagpr.vPrefix
17+
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18+
# This is only a tagging convention, not how it is described in the version file.
19+
#
20+
# tagpr.changelog (Optional)
21+
# Flag whether or not changelog is added or changed during the release.
22+
#
23+
# tagpr.command (Optional)
24+
# Command to change files just before release.
25+
#
26+
# tagpr.template (Optional)
27+
# Pull request template in go template format
28+
#
29+
# tagpr.release (Optional)
30+
# GitHub Release creation behavior after tagging [true, draft, false]
31+
# If this value is not set, the release is to be created.
32+
#
33+
# tagpr.majorLabels (Optional)
34+
# Label of major update targets. Default is [major]
35+
#
36+
# tagpr.minorLabels (Optional)
37+
# Label of minor update targets. Default is [minor]
38+
#
39+
[tagpr]
40+
vPrefix = true
41+
releaseBranch = master
42+
versionFile = VERSION

CHANGELOG.md

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Changelog
2+
3+
## [v2.4.1](https://github.com/b4b4r07/enhancd/compare/v2.4.0...v2.4.1) - 2023-03-31
4+
- Use tagpr workflow to make tag and update version file by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/193
5+
- Update all environment name by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/195
6+
7+
## [v2.4.0](https://github.com/b4b4r07/enhancd/compare/v2.3.2...v2.4.0) - 2023-03-30
8+
- Fix awk error by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/190
9+
- Add new feature on cd `.` by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/188
10+
11+
## [v2.3.2](https://github.com/b4b4r07/enhancd/compare/v2.3.1...v2.3.2) - 2023-03-27
12+
- Add workflow to make release automated by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/187
13+
14+
## [v2.3.1](https://github.com/b4b4r07/enhancd/compare/v2.3.0...v2.3.1) - 2023-03-27
15+
- Import existing labels by @github-actions in https://github.com/b4b4r07/enhancd/pull/185
16+
- fish: Do not change directory if Ctrl-C pressed in fuzzy search by @LordFlashmeow in https://github.com/b4b4r07/enhancd/pull/175
17+
- Update log structure logic by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/186
18+
19+
## [v2.3.0](https://github.com/b4b4r07/enhancd/compare/v2.2.4...v2.3.0) - 2023-03-25
20+
- Fix builtin cd arguments by @ponko2 in https://github.com/b4b4r07/enhancd/pull/93
21+
- Add fish support by @gazorby in https://github.com/b4b4r07/enhancd/pull/99
22+
- Fix ENHANCD_ROOT by @gazorby in https://github.com/b4b4r07/enhancd/pull/102
23+
- Fixes typo in README by @derphilipp in https://github.com/b4b4r07/enhancd/pull/105
24+
- Import existing labels by @github-actions in https://github.com/b4b4r07/enhancd/pull/115
25+
- Fix cd back to ~/ when aborting fuzzy selection with fish shell by @gazorby in https://github.com/b4b4r07/enhancd/pull/114
26+
- Add antigen support by @CHNB128 in https://github.com/b4b4r07/enhancd/pull/116
27+
- Update fish support by @gazorby in https://github.com/b4b4r07/enhancd/pull/139
28+
- Add git root inside a git repo by @gazorby in https://github.com/b4b4r07/enhancd/pull/111
29+
- Prevent sources deletion by @gazorby in https://github.com/b4b4r07/enhancd/pull/125
30+
- Fix awk scripts paths in fish functions by @gazorby in https://github.com/b4b4r07/enhancd/pull/141
31+
- fish: do not rely on fisher variable to find the plugin root by @d3dave in https://github.com/b4b4r07/enhancd/pull/143
32+
- Fix trailing newline in variable passed to awk when changing to relative path by @d3dave in https://github.com/b4b4r07/enhancd/pull/144
33+
- Fish fixes by @d3dave in https://github.com/b4b4r07/enhancd/pull/145
34+
- Use function instead of alias in Fish by @kidonng in https://github.com/b4b4r07/enhancd/pull/146
35+
- Use `command` prefix in built-in command by @cappyzawa in https://github.com/b4b4r07/enhancd/pull/142
36+
- Fix command prefix by @cappyzawa in https://github.com/b4b4r07/enhancd/pull/147
37+
- Fix ENHANCD_COMPLETION_BEHAVIOUR/BEHAVIOR misnamed variable by @LordFlashmeow in https://github.com/b4b4r07/enhancd/pull/151
38+
- Make README toc link work by @leader22 in https://github.com/b4b4r07/enhancd/pull/162
39+
- zsh: Fix handling of directory names containing spaces by @d3dave in https://github.com/b4b4r07/enhancd/pull/148
40+
- Take backup before running cd command by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/165
41+
- Revert "Take backup before running cd command" by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/166
42+
- Add Fig as an installation method to the README by @brendanfalk in https://github.com/b4b4r07/enhancd/pull/173
43+
- docs: added installation information for oh-my-zsh by @iToXiQ in https://github.com/b4b4r07/enhancd/pull/174
44+
- Add option to abbreviate home directory to ~ when searching by @d3dave in https://github.com/b4b4r07/enhancd/pull/149
45+
- Remove unneeded const variable by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/176
46+
- Refactor init by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/178
47+
- Refactoring src/sources.sh by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/179
48+
- Refactor filter by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/180
49+
- Refactor on fuzzy function by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/181
50+
- Refactor filepath by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/182
51+
- LTSV by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/183
52+
- Refactoring branch by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/177
53+
54+
## [v2.2.4](https://github.com/b4b4r07/enhancd/compare/v2.2.3...v2.2.4) - 2019-05-30
55+
- Fix builtin cd arguments by @ponko2 in https://github.com/b4b4r07/enhancd/pull/91
56+
- Bump up and some minor changes by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/92
57+
58+
## [v2.2.3](https://github.com/b4b4r07/enhancd/compare/v2.2.1...v2.2.3) - 2019-05-27
59+
- v2.2.2: Refactor and allow developers to easily maintain (etc.) by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/49
60+
- Fix issue that init routine runs in global scope by @usami-k in https://github.com/b4b4r07/enhancd/pull/50
61+
- Unalias error by @nexeck in https://github.com/b4b4r07/enhancd/pull/51
62+
- add: skip mkdir and touch if exist by @vintersnow in https://github.com/b4b4r07/enhancd/pull/55
63+
- Fix that shwordsplit doesn't work properly. by @asakasa in https://github.com/b4b4r07/enhancd/pull/56
64+
- add $ENHANCD_HOME_ARG by @crhg in https://github.com/b4b4r07/enhancd/pull/61
65+
- Always return true in history.sh __enhancd::history::list by @HaleTom in https://github.com/b4b4r07/enhancd/pull/71
66+
- add ENHANCD_HYPHEN_NUM env var, custom "cd -" num by @AknEp in https://github.com/b4b4r07/enhancd/pull/65
67+
- FreeBSD awk throws errors if the fifos are closed too early by @aperum in https://github.com/b4b4r07/enhancd/pull/60
68+
- Add dockerfile by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/73
69+
- Fix that shwordsplit doesn't work properly. by @kampka in https://github.com/b4b4r07/enhancd/pull/74
70+
- Fixes #80 by @emres in https://github.com/b4b4r07/enhancd/pull/81
71+
- Fix the check of awk command existence by @kan-bayashi in https://github.com/b4b4r07/enhancd/pull/82
72+
- Update installation guide by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/86
73+
- Support default option such as -P by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/88
74+
- Add new tab completion feature by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/90
75+
76+
## [v2.2.1](https://github.com/b4b4r07/enhancd/commits/v2.2.1) - 2016-10-16
77+
- Ignore directory jump list by @domidimi in https://github.com/b4b4r07/enhancd/pull/31
78+
- Use absolute path to avoid user alias in https://github.com/b4b4r07/enhancd/pull/29
79+
- Release 2.2.0 by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/34
80+
- Add escape in gsub by @usami-k in https://github.com/b4b4r07/enhancd/pull/35
81+
- Fix typo in readme by @lukechilds in https://github.com/b4b4r07/enhancd/pull/38
82+
- Make "__enhancd::cd()" arguments "-" and ".." configurable by shell vars by @key-amb in https://github.com/b4b4r07/enhancd/pull/37
83+
- Add an environment variable ENHANCD_DOT_SHOW_FULLPATH by @acro5piano in https://github.com/b4b4r07/enhancd/pull/42
84+
- Add documentation for ENHANCD_DOT_ARG, ENHANCD_HYPHEN_ARG by @key-amb in https://github.com/b4b4r07/enhancd/pull/43
85+
- Introduce ENHANCD_DISABLE_HOME config option not to use filter to cd without argument by @key-amb in https://github.com/b4b4r07/enhancd/pull/44
86+
- Improve performance and do a bit of refactoring (v2.2.1) by @b4b4r07 in https://github.com/b4b4r07/enhancd/pull/40
87+
- Fix wrong directory name when ENHANCD_DOT_SHOW_FULLPATH=1 by @acro5piano in https://github.com/b4b4r07/enhancd/pull/45

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

0 commit comments

Comments
 (0)