Bump the version number to v1.0.1
- ID
2c9ba9c- date
2024-08-26 13:56:50+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
4b8b4fe- message
Bump the version number to v1.0.1- changed files
2 files, 6 additions, 1 deletion
Changed files
CHANGELOG.md (466) → CHANGELOG.md (687)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c659f31..7749189 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG
+## v1.0.1 - 2024-08-26
+
+When you call `append_to_js_array()` or `append_to_js_object()`, previously the new value would all be smushed onto one line.
+Now it's written with 2 spaces of indentation, to match `write_js()`.
+
## v1.0.0 - 2024-08-24
Initial release. This includes four functions:
src/javascript/__init__.py (5886) → src/javascript/__init__.py (5886)
diff --git a/src/javascript/__init__.py b/src/javascript/__init__.py
index 65a02d3..6f44d4f 100644
--- a/src/javascript/__init__.py
+++ b/src/javascript/__init__.py
@@ -19,7 +19,7 @@ import typing
import uuid
-__version__ = "1.0.0"
+__version__ = "1.0.1"
def read_js(p: pathlib.Path | str, *, varname: str) -> typing.Any: