Skip to content

Commit 074bbd6

Browse files
committed
chore: bump version info and HISTORY post-release
1 parent cbd07ea commit 074bbd6

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ For more details, see the "command-t-development" section in [the documentation]
1717
9. Push with `git push --follow-tags`.
1818
10. Update [release notes on GitHub](https://github.com/wincent/command-t/releases).
1919
11. Start a new entry under "command-t-history" in `doc/command-t.txt` for subsequent development.
20+
12. Edit metadata in `lua/wincent/comamndt/version.lua` to show `prelease = 'main'` and `version = 'x.y.z-main`.
2021

2122
# Reproducing bugs
2223

doc/command-t.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,10 @@ POSSIBILITY OF SUCH DAMAGE.
901901

902902
HISTORY *command-t-history*
903903

904+
main (not yet released) ~
905+
906+
- ...
907+
904908
8.0 (26 June 2025) ~
905909

906910
- Removed the Ruby implementation. Switch to the `7-x-release` branch if you

lua/wincent/commandt/health.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ local ruby_build_directory =
1010
vim.fn.fnamemodify((path.caller() + '../../../../ruby/command-t/ext/command-t'):normalize(), ':~')
1111

1212
local function report_info()
13-
health.info('Command-T version: ' .. require('wincent.commandt.version').version)
13+
local version = require('wincent.commandt.version')
14+
health.info('Command-T version: ' .. version.version)
15+
if version.prerelease ~= '' then
16+
health.info('This is a prerelease (track the `release` branch for maximum stability)')
17+
end
1418
health.info('Lua build directory:\n' .. lua_build_directory)
1519
health.info('Ruby build directory:\n' .. ruby_build_directory)
1620
end

lua/wincent/commandt/version.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ return {
55
major = 8,
66
minor = 0,
77
patch = 0,
8-
prerelease = '',
9-
version = '8.0',
8+
prerelease = 'main',
9+
version = '8.0-main',
1010
}

0 commit comments

Comments
 (0)