Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Bump version: 1.0.10 → 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPalard committed Oct 13, 2020
1 parent bdf4a08 commit 48c9a75
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 13 deletions.
37 changes: 27 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,56 @@
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/),
## [1.0.11] - 2020-10-14
### Fixed
- Better handling of FileNotFound, PermissionDenied, or IsADirectory errors.

## [1.0.10] - 2020-10-14
### Fixed
- Use `^` escape char on each line while invoking hunspell, avoiding
it to think some line are comments.

## [Unreleased]
## [1.0.9] - 2020-10-12
### Changed
- pospell now uses `hunspell -a` (was using `hunspell -l`), so
hunspell can tell on which line an error is, instead of having
pospell (wrongly) guess it.

## [1.0.5] - 2020-07-01
## [1.0.8] - 2020-10-12
### Fixed
- Missing Sphinx option in hardcoded settings from 1.0.7.

## [1.0.7] - 2020-10-11
### Changed
- Hunspell is invoqued a single time.
- Avoid calling docutils.frontend.OptionParser, hardcode settings, saving lots of time.
- pospell is now twice faster on python-docs-fr.


## [1.0.6] - 2020-10-11
### Fixed
- Hunspell compounding mishandling caused some errors to be hidden by pospell.

## [1.0.5] - 2020-07-01
### Fixed
- Some errors were not reported due to [Hunspell not reporting them in
Auto mode](https://github.com/hunspell/hunspell/issues/655).

## [1.0.4] - 2020-06-28

### Fixed

- Avoid glueing words together: "hello - world" was sent to hunspell as "helloworld".
- Don't pass placeholders like %s, %(foo)s, or {foo} to Hunspell.
- Don't pass Sphinx variables with underscores in them to Hunspell, like {days_since}.

## [1.0.3] - 2019-10-17

### Changed

- [Soft hyphens](https://en.wikipedia.org/wiki/Soft_hyphen) are now removed.

## [1.0.2] - 2019-10-16

### Fixed

- In POSIX.1, also drop the .1.

## [1.0.1] - 2019-10-16

### Fixed

- Drop prefixes while dropping accronyms, as in `non-HTTP`.
- Regression fixed while dropping plural form of accronyms like `PEPs`.
2 changes: 1 addition & 1 deletion pospell.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import regex

__version__ = "1.0.10"
__version__ = "1.0.11"

DEFAULT_DROP_CAPITALIZED = {"fr": True, "fr_FR": True}

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.10
current_version = 1.0.11
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="pospell",
version="1.0.10",
version="1.0.11",
description="Spellcheck .po files containing reStructuredText translations",
long_description=long_description,
long_description_content_type="text/markdown", # This is important!
Expand Down

0 comments on commit 48c9a75

Please sign in to comment.