From 6e17ed6f62d0152ad39c8b8be8dc92d96fa38b3e Mon Sep 17 00:00:00 2001
From: Kelly Brazil <kellyjonbrazil@gmail.com>
Date: Mon, 22 Apr 2024 10:11:26 -0700
Subject: [PATCH] version bump

---
 CHANGELOG                  | 3 +++
 jc/lib.py                  | 2 +-
 man/jc.1                   | 4 ++--
 setup.py                   | 2 +-
 templates/manpage_template | 2 +-
 5 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 1799e51d..a8965903 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
 jc changelog
 
+20240422 v1.25.3
+- Documentation updates
+
 20240323 v1.25.2
 - Add `apt-cache-show` command parser
 - Add `apt-get-sqq` command parser
diff --git a/jc/lib.py b/jc/lib.py
index 96b35ec5..a313d7c7 100644
--- a/jc/lib.py
+++ b/jc/lib.py
@@ -10,7 +10,7 @@ from jc import appdirs
 from jc import utils
 
 
-__version__ = '1.25.2'
+__version__ = '1.25.3'
 
 parsers: List[str] = [
     'acpi',
diff --git a/man/jc.1 b/man/jc.1
index 2cf1477a..9b111ed6 100644
--- a/man/jc.1
+++ b/man/jc.1
@@ -1,4 +1,4 @@
-.TH jc 1 2024-03-23 1.25.2 "JSON Convert"
+.TH jc 1 2024-04-22 1.25.3 "JSON Convert"
 .SH NAME
 \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types,
 and strings
@@ -1289,7 +1289,7 @@ lines from the beginning through \fBSTOP\fP lines from the end
 \fB:\fP
 all lines
 
-.SH SlURP
+.SH SLURP
 Some parsers support multi-item input and can output an array of results in a
 single pass. Slurping works for string parsers that accept a single line of
 input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support
diff --git a/setup.py b/setup.py
index 4c883cf2..bbcf9414 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
 
 setuptools.setup(
     name='jc',
-    version='1.25.2',
+    version='1.25.3',
     author='Kelly Brazil',
     author_email='kellyjonbrazil@gmail.com',
     description='Converts the output of popular command-line tools and file-types to JSON.',
diff --git a/templates/manpage_template b/templates/manpage_template
index cb76d137..5bbe4ceb 100644
--- a/templates/manpage_template
+++ b/templates/manpage_template
@@ -194,7 +194,7 @@ lines from the beginning through \fBSTOP\fP lines from the end
 \fB:\fP
 all lines
 
-.SH SlURP
+.SH SLURP
 Some parsers support multi-item input and can output an array of results in a
 single pass. Slurping works for string parsers that accept a single line of
 input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support