From b03ad7faabc58a6cc925f9ff2f7c2abf35bd6600 Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Sat, 21 May 2022 16:10:45 +0200 Subject: [PATCH] Bump version to v0.6.1 --- CHANGES.md | 2 +- core.js | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b3e2a88..293bd1b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ This file records the changes in each m3api release. The annotated tag (and GitHub release) for each version also lists the changes, but this file may sometimes contain later improvements (e.g. typo fixes). -## next (not yet released) +## v0.6.1 (2022-05-21) - A new request option, `dropTruncatedResultWarning`, is available. Previously, this behavior was hard-coded in `requestAndContinueReducingBatch()`; diff --git a/core.js b/core.js index a416eb1..e1bacee 100644 --- a/core.js +++ b/core.js @@ -8,7 +8,7 @@ const DEFAULT_OPTIONS = { dropTruncatedResultWarning: false, }; -const DEFAULT_USER_AGENT = 'm3api/0.6.0 (https://www.npmjs.com/package/m3api)'; +const DEFAULT_USER_AGENT = 'm3api/0.6.1 (https://www.npmjs.com/package/m3api)'; const TRUNCATED_RESULT = /^This result was truncated because it would otherwise ?be larger than the limit of .* bytes$/; diff --git a/package-lock.json b/package-lock.json index d6ebd39..0e35d87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "m3api", - "version": "0.6.0", + "version": "0.6.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "m3api", - "version": "0.6.0", + "version": "0.6.1", "license": "ISC", "dependencies": { "axios": "^0.27.2", diff --git a/package.json b/package.json index 7edc464..70283a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "m3api", - "version": "0.6.0", + "version": "0.6.1", "description": "Minimal modern MediaWiki API wrapper.", "main": "node.js", "type": "module",