Просмотр исходного кода

chore: updated version number before next release

Updated version number before next release.
jlanzarotta 10 месяцев назад
Родитель
Сommit
fab271e359
2 измененных файлов с 20 добавлено и 5 удалено
  1. 18 3
      doc/bufexplorer.txt
  2. 2 2
      plugin/bufexplorer.vim

+ 18 - 3
doc/bufexplorer.txt

@@ -1,7 +1,7 @@
-*bufexplorer.txt*              Buffer Explorer       Last Change: 17 Feb 2025
+*bufexplorer.txt*              Buffer Explorer       Last Change: 05 Mar 2025
 
 Buffer Explorer                                *buffer-explorer* *bufexplorer*
-                                Version 7.6.0
+                                Version 7.7.0
 
 Plugin for easily exploring (or browsing) Vim|:buffers|.
 
@@ -280,6 +280,21 @@ The default is 1.
 ===============================================================================
 CHANGE LOG                                              *bufexplorer-changelog*
 
+7.7.0    March 05, 2025
+     What's Changed
+     - Another Major patch implemented by Dr. Michael Henry.
+       https://github.com/jlanzarotta/bufexplorer/pull/121
+       * Fix issue Bufexplorer MRU sort doesn't work properly if using
+         restore_session.vim #8 "Bufexplorer MRU sort doesn't work properly if
+         using restore_session.vim".
+       * Fix issue Bufexplorer interferes with the startinsert! command #87
+         "Bufexplorer interferes with the startinsert! command".
+       * Treat unlisted buffers as least-recently-used instead of
+         most-recently-used in the MRU sort order.
+       * Replace the undocumented m key (intended for debugging MRU logic)
+         with the BufExplorer_eval() and BufExplorer_execute() general
+         debugging features.
+       * Improve speed of MRU tracking.
 7.6.0    February 17, 2025
      What's Changed
      - Another Major patch implemented by Dr. Michael Henry.
@@ -879,7 +894,7 @@ won't list names.
 ===============================================================================
 COPYRIGHT                                               *bufexplorer-copyright*
 
-Copyright (c) 2001-2024, Jeff Lanzarotta
+Copyright (c) 2001-2025, Jeff Lanzarotta
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without

+ 2 - 2
plugin/bufexplorer.vim

@@ -36,7 +36,7 @@
 " Name Of File: bufexplorer.vim
 "  Description: Buffer Explorer Vim Plugin
 "   Maintainer: Jeff Lanzarotta (my name at gmail dot com)
-" Last Changed: Monday, 17 February 2025
+" Last Changed: Wednesday, 05 March 2025
 "      Version: See g:bufexplorer_version for version number.
 "        Usage: This file should reside in the plugin directory and be
 "               automatically sourced.
@@ -74,7 +74,7 @@ endif
 "1}}}
 
 " Version number
-let g:bufexplorer_version = "7.6.0"
+let g:bufexplorer_version = "7.7.0"
 
 " Plugin Code {{{1
 " Check for Vim version {{{2