From 80e59700733a2db038a72bf47770c50cfeb766ab Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Sat, 29 Jun 2024 12:28:35 +1000 Subject: [PATCH] Publish v1.7.3 --- factory.js | 2 +- package.json | 2 +- whatsnew.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/factory.js b/factory.js index e8c8409..444759a 100644 --- a/factory.js +++ b/factory.js @@ -338,7 +338,7 @@ function autobind(obj, prop) { choc = new Proxy(choc, {get: autobind}); lindt = new Proxy(lindt, {get: autobind}); -choc.__version__ = "1.7.2"; +choc.__version__ = "1.7.3"; //For modules, make the main entry-point easily available. export default choc; diff --git a/package.json b/package.json index 1bff5ae..201c6a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chocfactory", - "version": "1.7.2", + "version": "1.7.3", "description": "Simple JS front end library", "main": "factory.js", "scripts": { diff --git a/whatsnew.md b/whatsnew.md index d3cdd5a..3e0ab74 100644 --- a/whatsnew.md +++ b/whatsnew.md @@ -1,6 +1,6 @@ ## Chocolate Factory version history -### vNext +### v1.7.3 * Importer feature (JS only): Explicit calls to choc.X() or lindt.X() will mark their arguments as Choc Factory context.