diff --git a/assets/release_notes.md b/assets/release_notes.md
index f11e6305..b5545c17 100644
--- a/assets/release_notes.md
+++ b/assets/release_notes.md
@@ -1,6 +1,12 @@
 ## InvenTree App Release Notes
 ---
 
+### 0.2.5 - June 2021
+---
+
+- Fixed bug associated with scanning a StockItem into a non-existent location
+- Improved error reporting
+
 ### 0.2.4 - June 2021
 ---
 
diff --git a/lib/l10n b/lib/l10n
index 05a5cbf6..7a23f04b 160000
--- a/lib/l10n
+++ b/lib/l10n
@@ -1 +1 @@
-Subproject commit 05a5cbf63b4b5479162905def9fdadf21041212e
+Subproject commit 7a23f04bfc11dd099511536bdb8b72a9b35edecf
diff --git a/lib/settings/about.dart b/lib/settings/about.dart
index b0dc9090..5403be96 100644
--- a/lib/settings/about.dart
+++ b/lib/settings/about.dart
@@ -107,7 +107,7 @@ class InvenTreeAboutWidget extends StatelessWidget {
     tiles.add(
       ListTile(
         title: Text(L10().version),
-        subtitle: Text("${info.version}"),
+        subtitle: Text("${info.version} - Build ${info.buildNumber}"),
         leading: FaIcon(FontAwesomeIcons.infoCircle)
       )
     );
diff --git a/pubspec.yaml b/pubspec.yaml
index a66a5333..6208add5 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -7,7 +7,7 @@ description: InvenTree stock management
 # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
 # Read more about iOS versioning at
 # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
-version: 0.2.4+12
+version: 0.2.5+13
 
 environment:
   sdk: ">=2.1.0 <3.0.0"