Skip to content

Commit

Permalink
ops: prepare v0.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jannismain committed Nov 8, 2023
1 parent 488c2f0 commit 194bfc4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

[*see all changes*](https://github.com/jannismain/mkdocs-macros-includex/compare/v0.0.5...HEAD)
[*see all changes*](https://github.com/jannismain/mkdocs-macros-includex/compare/v0.0.6...HEAD)

## [0.0.6] - 2023-11-08
[0.0.6]: https://github.com/jannismain/mkdocs-macros-includex/releases/tag/v0.0.6

[*see all changes*](https://github.com/jannismain/mkdocs-macros-includex/compare/v0.0.5...v0.0.6)

### Added

- support older Python versions up to 3.7

### Changed

- an error is now raised when `start_match` or `end_match` are provided but don't match any line in the included content. Previously, the content was included in full if no match was found.
- **code**: only infer code block language based on extension of included file.
- pygments' `guess_lexer` fails to work on the most obvious snippets while producing false-positives for others.

Expand Down
2 changes: 1 addition & 1 deletion includex.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
except ImportError: # pragma: no cover
use_pygments = False

__version__ = "0.0.5"
__version__ = "0.0.6"


def define_env(env): # pragma: no cover
Expand Down

0 comments on commit 194bfc4

Please sign in to comment.