Skip to content

Commit

Permalink
Prepare version 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dimztimz committed Aug 27, 2023
1 parent 7aeecef commit f98c7c4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.1.3] - 2023-08-27
### Added
- Added Vcpkg manifest file called `vcpkg.json` for easier development and
testing, mainly on Windows.

### Changed
- The build-only and test-only dependency Catch2 is now pulled with
`FetchContent` if first it is not found with `find_package`. The Git submodule
is no longer used.

### Fixed
- The documentation generated by Doxygen no longer shows the inline namespace
used for versioning of the ABI. It was not of interest to users of the
library.

## [5.1.2] - 2022-09-29
### Changed
- Rewrite internal testing tool verify and improve it to support testing
Expand Down Expand Up @@ -252,7 +267,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Spelling error detection (checking) is closely matching Hunspell
- Support for spelling error correction (suggestions)

[Unreleased]: https://github.com/nuspell/nuspell/compare/v5.1.2...HEAD
[Unreleased]: https://github.com/nuspell/nuspell/compare/v5.1.3...HEAD
[5.1.3]: https://github.com/nuspell/nuspell/compare/v5.1.2...v5.1.3
[5.1.2]: https://github.com/nuspell/nuspell/compare/v5.1.1...v5.1.2
[5.1.1]: https://github.com/nuspell/nuspell/compare/v5.1.0...v5.1.1
[5.1.0]: https://github.com/nuspell/nuspell/compare/v5.0.1...v5.1.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)
project(nuspell
VERSION 5.1.2
VERSION 5.1.3
DESCRIPTION "Nuspell spellchecking library"
HOMEPAGE_URL https://nuspell.github.io/
LANGUAGES CXX)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ Main features of Nuspell spelling checker:
Build-only dependencies:

- C++ 17 compiler with support for `std::filesystem`, e.g. GCC >= v9
- CMake >= v3.8
- CMake >= v3.12
- Catch2 >= v2.3.0 (It is only needed when building the tests. If it is not
available as a system package, the the Git submodule will be used.)
available as a system package, the CMake will download it using
`FetchContent`.)
- Getopt (It is needed only on Windows + MSVC and only when the CLI tool or
the tests are built. It is available in vcpkg. Other platforms provide
it out of the box.)
Expand Down

0 comments on commit f98c7c4

Please sign in to comment.