From 1054c35dc59e870f8035711ebff0d3cd0b706f49 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 10 Nov 2022 13:11:05 +0100 Subject: [PATCH] Set development version number --- CHANGELOG.md | 14 ++++++++++++++ modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a4f203c8..d1ed07f05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,20 @@ _Breaking developer changes, which may affect downstream projects or sites that [@xxxx]: https://github.com/xxxx --> +# Unreleased + +#### :sparkles: Usability & Accessibility +#### :white_check_mark: Validation +#### :bug: Bugfixes +#### :hourglass: Performance +#### :rocket: Presets +#### :hammer: Development +* ([#]) + +[#xxxx]: https://github.com/openstreetmap/iD/issues/xxxx +[#xxxx]: https://github.com/openstreetmap/iD/pull/xxxx +[@xxxx]: https://github.com/xxxx + # 2.23.0 ##### 2022-Nov-10 diff --git a/modules/core/context.js b/modules/core/context.js index b0c9b8d7a..7f0683255 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -25,7 +25,7 @@ export function coreContext() { let context = utilRebind({}, dispatch, 'on'); let _deferred = new Set(); - context.version = '2.23.0'; + context.version = '2.24.0-dev'; context.privacyVersion = '20201202'; // iD will alter the hash so cache the parameters intended to setup the session diff --git a/package.json b/package.json index 6704b4e68..792c7ce35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.23.0", + "version": "2.24.0-dev", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",