diff --git a/.app_version b/.app_version
index 847e9aef..727d97b9 100644
--- a/.app_version
+++ b/.app_version
@@ -1 +1 @@
-0.20.1
+0.20.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8fdc8806..44ac0073 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,11 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+# 0.20.2 - 2024-12-17
+
+### Added
+
+- A point id is now being shown in the point popup.
+
+### Fixed
+
+- North Macedonia is now being shown on the scratch map. #537
+
# 0.20.1 - 2024-12-16
### Fixed
-- Setting `reverse_geocoded_at` for points that don't have geodata is now being performed in background job, in batches of 10,000 points to prevent memory exhaustion.
+- Setting `reverse_geocoded_at` for points that don't have geodata is now being performed in background job, in batches of 10,000 points to prevent memory exhaustion and long-running data migration.
# 0.20.0 - 2024-12-16
diff --git a/app/javascript/maps/country_codes.js b/app/javascript/maps/country_codes.js
index 6e5cf115..a5b7dcd3 100644
--- a/app/javascript/maps/country_codes.js
+++ b/app/javascript/maps/country_codes.js
@@ -161,6 +161,7 @@ export function countryCodesMap() {
"Niue": "NU",
"Norfolk Island": "NF",
"Northern Mariana Islands": "MP",
+ "North Macedonia": "MK",
"Norway": "NO",
"Oman": "OM",
"Pakistan": "PK",
diff --git a/app/javascript/maps/popups.js b/app/javascript/maps/popups.js
index 31af3ac0..34a71224 100644
--- a/app/javascript/maps/popups.js
+++ b/app/javascript/maps/popups.js
@@ -15,6 +15,7 @@ export function createPopupContent(marker, timezone, distanceUnit) {
Altitude: ${marker[3]}m
Velocity: ${marker[5]}km/h
Battery: ${marker[2]}%
+ Id: ${marker[6]}
[Delete]
`;
}