Skip to content

Commit bf8ed7c

Browse files
committed
chore: prepare release v2.0.1
1 parent 6bfb60f commit bf8ed7c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.1] - 2025-07-10
11+
1012
### Fixed
1113
- Multi-line character motions with text objects (e.g., `goi{`) now preserve whitespace correctly by treating "perfect lines" selections as line motions (#10).
1214

15+
### Added
16+
- Pre-commit hooks and improved development tooling.
17+
- Project-specific development guidelines.
18+
19+
### Changed
20+
- Improved code style consistency with proper comment formatting.
21+
1322
## [2.0.0] - 2025-07-09
1423

1524
### Added
@@ -63,6 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6372
- Keybinding examples with detailed explanations.
6473
- Documentation for numerical sorting options.
6574

66-
[Unreleased]: https://github.com/sQVe/sort.nvim/compare/v2.0.0...HEAD
75+
[Unreleased]: https://github.com/sQVe/sort.nvim/compare/v2.0.1...HEAD
76+
[2.0.1]: https://github.com/sQVe/sort.nvim/compare/v2.0.0...v2.0.1
6777
[2.0.0]: https://github.com/sQVe/sort.nvim/compare/v1.0.0...v2.0.0
6878
[1.0.0]: https://github.com/sQVe/sort.nvim/releases/tag/v1.0.0

lua/sort/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local utils = require('sort.utils')
55
local mappings = require('sort.mappings')
66

77
local M = {
8-
_VERSION = '2.0.0',
8+
_VERSION = '2.0.1',
99
_DESCRIPTION = 'Sorting plugin for Neovim',
1010
_URL = 'https://github.com/sQVe/sort.nvim',
1111
_LICENSE = 'MIT',

0 commit comments

Comments
 (0)