From 996108f37bb4e2bfbf7a323a535769c3e017321d Mon Sep 17 00:00:00 2001
From: Shyue Ping Ong <shyuep@gmail.com>
Date: Tue, 16 Apr 2024 15:36:57 -0700
Subject: [PATCH] Update dev docs

---
 docs/changelog.md       | 3 +++
 docs/monty.functools.md | 3 ---
 docs/monty.os.md        | 1 -
 docs/monty.re.md        | 2 --
 monty/__init__.py       | 2 +-
 pyproject.toml          | 2 +-
 6 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/docs/changelog.md b/docs/changelog.md
index 515369195..3ad21a655 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,8 @@
 # Change log
 
+## 2024.4.16
+- Misc bug fixes for jsanitize (@Andrew-S-Rosen).
+
 ## 2024.3.31
 - Fix MSONable.REDIRECT when module name changed (@janosh)
 - Add native support for enums in jsanitize (@FabiPi3)
diff --git a/docs/monty.functools.md b/docs/monty.functools.md
index 15bc0fca9..93fd41b68 100644
--- a/docs/monty.functools.md
+++ b/docs/monty.functools.md
@@ -73,13 +73,10 @@ becomes
 The decorated main accepts two new arguments:
 
 > prof_file: Name of the output file with profiling data
-
 > ```none
 > If not given, a temporary file is created.
 > ```
-
 > sortby: Profiling data are sorted according to this value.
-
 > ```none
 > default is “time”. See sort_stats.
 > ```
diff --git a/docs/monty.os.md b/docs/monty.os.md
index 8d85d1dc8..96184b2e2 100644
--- a/docs/monty.os.md
+++ b/docs/monty.os.md
@@ -15,7 +15,6 @@ performing some tasks, and returns to the original working directory
 afterwards. E.g.,
 
 > with cd(“/my/path/”):
-
 > ```none
 > do_something()
 > ```
diff --git a/docs/monty.re.md b/docs/monty.re.md
index 7082093fb..b7e419ef9 100644
--- a/docs/monty.re.md
+++ b/docs/monty.re.md
@@ -25,11 +25,9 @@ A powerful regular expression version of grep.
 * **Returns**
 
 > {key1: [[[matches…], lineno], [[matches…], lineno],
-
 > ```none
 > [[matches…], lineno], …],
 > ```
-
 > key2: …}
 
 For reverse reads, the lineno is given as a -ve number. Please note
diff --git a/monty/__init__.py b/monty/__init__.py
index 3b5e2fd3f..a0f610f4c 100644
--- a/monty/__init__.py
+++ b/monty/__init__.py
@@ -9,7 +9,7 @@
 
 __author__ = "Shyue Ping Ong"
 __copyright__ = "Copyright 2014, The Materials Virtual Lab"
-__version__ = "2024.3.31"
+__version__ = "2024.4.16"
 __maintainer__ = "Shyue Ping Ong"
 __email__ = "ongsp@ucsd.edu"
 __date__ = "Oct 12 2020"
diff --git a/pyproject.toml b/pyproject.toml
index 113a72af2..18f17ce73 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,7 +21,7 @@ classifiers = [
 dependencies = [
 
 ]
-version = "2024.3.31"
+version = "2024.4.16"
 
 [tool.setuptools]
 packages = ["monty"]