Skip to main content

Update the version to 1.0.0 for initial PyPI release

ID
4b8b4fe
date
2024-08-24 09:32:12+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
59d203e
message
Update the version to 1.0.0 for initial PyPI release
changed files
2 files, 10 additions, 1 deletion

Changed files

CHANGELOG.md (93) → CHANGELOG.md (466)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 200369b..c659f31 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
 # CHANGELOG
 
+## v1.0.0 - 2024-08-24
+
+Initial release.  This includes four functions:
+
+*   Read a JavaScript file with `read_js(path, varname)`
+*   Write a JavaScript file with `write_js(path, value, varname)`
+*   Append an item to a JavaScript array with `append_to_js_array(path, value)`
+*   Append a key-value pair to a JavaScript object with `append_to_js_object(path, key, value)`
+
 ## v0.0.1 - 2024-08-24
 
 Initial release on PyPI, to test the release mechanism.

src/javascript/__init__.py (5886) → src/javascript/__init__.py (5886)

diff --git a/src/javascript/__init__.py b/src/javascript/__init__.py
index 8c976dc..65a02d3 100644
--- a/src/javascript/__init__.py
+++ b/src/javascript/__init__.py
@@ -19,7 +19,7 @@ import typing
 import uuid
 
 
-__version__ = "0.0.1"
+__version__ = "1.0.0"
 
 
 def read_js(p: pathlib.Path | str, *, varname: str) -> typing.Any: