Skip to content

Commit 3fc260b

Browse files
committed
docs: update changelog
1 parent e64e2c1 commit 3fc260b

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [1.0.0] - 2022-11-05
10+
### BREAKING CHANGE
11+
- Support latest version of Neovim (#1).
12+
- Neovim now uses env var `NVIM` instead of `NVIM_LISTEN_ADDRESS`.
13+
14+
### Added
15+
- Support optional logfile.
16+
- Improve path handling.
17+
18+
### Fixed
19+
- Better buffer deleting.
20+
21+
### Changed
22+
- Add to readme.
23+
- Add unit tests.
24+
925
## [0.2.1] - 2021-09-17
1026
### Fixed
1127
- Improve error message the for build.sh script.
@@ -24,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2440
### Added
2541
- Create `flatnvim`.
2642

27-
[Unreleased]: https://github.com/adamtabrams/flatnvim/compare/v0.2.1...HEAD
43+
[Unreleased]: https://github.com/adamtabrams/flatnvim/compare/v1.0.0...HEAD
44+
[1.0.0]: https://[email protected]/adamtabrams/flatnvim/compare/v0.2.1...v1.0.0
2845
[0.2.1]: https://github.com/adamtabrams/flatnvim/compare/v0.2.0...v0.2.1
2946
[0.2.0]: https://github.com/adamtabrams/flatnvim/compare/v0.1.0...v0.2.0
3047
[0.1.0]: https://github.com/adamtabrams/flatnvim/releases/tag/v0.1.0

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
func main() {
14-
const version string = "v0.2.1"
14+
const version string = "v1.0.0"
1515

1616
log.SetFlags(log.Ldate | log.Ltime)
1717
log.SetPrefix(version + " ")

0 commit comments

Comments
 (0)