diff --git a/README.md b/README.md index cb50808..9a24a91 100644 --- a/README.md +++ b/README.md @@ -53,18 +53,3 @@ The release `1.3.1-0` will be mapped to `1.3.1.post0`. from l9format import l9format l9format.L9Event.from_dict(res) ``` - -## Versioning - -The versions will be synced with [l9format](https://github.com/leakix/l9format), -suffixed by a number for bug fixes in the python implementation specifically. -For instance, `1.3.1-0` will be the first version for `1.3.1` and follow -https://github.com/LeakIX/l9format/releases/tag/v1.3.1. If a change is required -for the Python package, but is the same specification than the Go -implementation, the next release will be `1.3.1-1`. -The version can be verified using - -```python -import l9format -l9format.__version__ -``` diff --git a/l9format/__init__.py b/l9format/__init__.py index 4327aed..f708a9b 100644 --- a/l9format/__init__.py +++ b/l9format/__init__.py @@ -1 +1 @@ -__version__ = "1.3.1-0" +__version__ = "1.3.2" diff --git a/pyproject.toml b/pyproject.toml index abf15e0..2f57c5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "l9format" -version = "1.3.1a4" +version = "1.3.2" license = "MIT" description = "l9format is a schema declaration targeted at interoperability between network recon tools used at LeakIX" authors = ["Danny Willems "]