From 5887f5e232aa73a21a43b4ef729f762c9fa8ca18 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Thu, 23 Jan 2025 21:09:34 +0100 Subject: [PATCH 1/3] Bump up to 1.3.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "] From f2694d7911102b1b832cc4dcdd3ab56b3ec17bdc Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Thu, 23 Jan 2025 21:10:09 +0100 Subject: [PATCH 2/3] README: remove versioning section Outdated --- README.md | 15 --------------- 1 file changed, 15 deletions(-) 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__ -``` From 47e9661290fbd11f03fede5682c19cfdc2c9a59a Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Thu, 23 Jan 2025 21:10:21 +0100 Subject: [PATCH 3/3] Bump up version --- l9format/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"