From d299e36147dbb1b51823892a75999b62563f4b01 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Mon, 23 Sep 2024 11:15:55 +1000 Subject: [PATCH] Publish v1.7.4 --- 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 ecc1ed7..47f558a 100644 --- a/factory.js +++ b/factory.js @@ -341,7 +341,7 @@ function autobind(obj, prop) { choc = new Proxy(choc, {get: autobind}); lindt = new Proxy(lindt, {get: autobind}); -choc.__version__ = "1.7.3"; +choc.__version__ = "1.7.4"; //For modules, make the main entry-point easily available. export default choc; diff --git a/package.json b/package.json index 201c6a6..8521ad1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chocfactory", - "version": "1.7.3", + "version": "1.7.4", "description": "Simple JS front end library", "main": "factory.js", "scripts": { diff --git a/whatsnew.md b/whatsnew.md index 83f2d03..fda2ab9 100644 --- a/whatsnew.md +++ b/whatsnew.md @@ -1,6 +1,6 @@ ## Chocolate Factory version history -### vNext +### v1.7.4 * Bug fix: Calling replace_content with a non-matching selector will correctly throw an error.