Skip to content

Commit

Permalink
Merge pull request #166 from neutrinoceros/rel_4.3.1
Browse files Browse the repository at this point in the history
REL: prep release 4.3.1
  • Loading branch information
neutrinoceros committed Mar 10, 2023
2 parents 6e7bc35 + 67636ad commit 0dd5fdd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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).

## [4.3.1] - 2023-03-10

PERF: speedup parsing (take 3)
This version is overall ~3x faster than inifix 4.1.0, and ~15% faster than inifix 4.3.0

## [4.3.0] - 2023-03-10

- ENH: implement --skip-validation for inifix-format CLI
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,14 @@ following configuration (add to `.pre-commit-config.yaml`)

```yaml
- repo: https://github.com/neutrinoceros/inifix.git
rev: v4.3.0
rev: v4.3.1
hooks:
- id: inifix-validate
```
or
```yaml
- repo: https://github.com/neutrinoceros/inifix.git
rev: v4.3.0
rev: v4.3.1
hooks:
- id: inifix-format
```
Expand All @@ -235,7 +235,7 @@ Note that `inifix-format` also validates data by default, so it is redundant to
utilize both hooks. Validation and formatting may nonetheless be decoupled as
```patch
- repo: https://github.com/neutrinoceros/inifix.git
rev: v4.3.0
rev: v4.3.1
hooks:
- id: inifix-validate
- id: inifix-format
Expand Down
2 changes: 1 addition & 1 deletion inifix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .io import loads
from .validation import validate_inifile_schema

__version__ = "4.3.0"
__version__ = "4.3.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "inifix"
version = "4.3.0"
version = "4.3.1"
description = "I/O facility for Idefix/Pluto configuration files"
authors = [
{ name = "C.M.T. Robert" },
Expand Down

0 comments on commit 0dd5fdd

Please sign in to comment.