From beaba5644c2dc81b1d6fad88d38d9aa34a379056 Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Wed, 19 Oct 2022 21:29:47 +0200 Subject: [PATCH] Bump version to 0.7.0 --- 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 ec10acb..8762eb9 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.7.0 (2022-10-19) - BREAKING CHANGE: A new request option, `maxRetriesSeconds`, limits the total duration of retried requests, diff --git a/core.js b/core.js index 73f02d7..9720fd3 100644 --- a/core.js +++ b/core.js @@ -28,7 +28,7 @@ const DEFAULT_OPTIONS = { dropTruncatedResultWarning: false, }; -const DEFAULT_USER_AGENT = 'm3api/0.6.1 (https://www.npmjs.com/package/m3api)'; +const DEFAULT_USER_AGENT = 'm3api/0.7.0 (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 91318ce..dca65a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "m3api", - "version": "0.6.1", + "version": "0.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "m3api", - "version": "0.6.1", + "version": "0.7.0", "license": "ISC", "dependencies": { "axios": "^1.1.3", diff --git a/package.json b/package.json index 0ff90a1..3000a64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "m3api", - "version": "0.6.1", + "version": "0.7.0", "description": "Minimal modern MediaWiki API wrapper.", "main": "node.js", "type": "module",