Skip to content

Commit b3dd0d3

Browse files
committed
meta: v1.9.6
1 parent 61061f2 commit b3dd0d3

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ body:
2424
label: Version
2525
description: What version of our software are you running?
2626
options:
27-
- 1.9.5 (Default)
27+
- 1.9.6 (Default)
28+
- 1.9.5
2829
- 1.9.4
2930
- 1.9.0
3031
- 1.8.5

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ body:
4747
label: Version
4848
description: What version of our software did you last run?
4949
options:
50-
- 1.9.5 (Default)
50+
- 1.9.6 (Default)
51+
- 1.9.5
5152
- 1.9.4
5253
- 1.9.0
5354
- 1.8.5

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
rpi-imager (1.9.6) unstable; urgency=medium
2+
3+
* OS customisation:
4+
- Add Wi-Fi country selection validator
5+
- Add new SSH key error messages
6+
* i18n: Updated Chinese, French, Italian, Russian translations
7+
* windows: Use normal mode for file writing operations
8+
* all: Refactor drive formatting logic, home-grown formatter
9+
10+
-- Tom Dewey <tom.dewey@raspberrypi.com> Mon, 21 Jul 2025 17:00:00 +0100
11+
112
rpi-imager (1.9.5) unstable; urgency=medium
213

314
* OS customisation:

debian/org.raspberrypi.rpi-imager.metainfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<binary>rpi-imager</binary>
5656
</provides>
5757
<releases>
58-
<release version="1.9.4" />
58+
<release version="1.9.6" />
5959
</releases>
6060
<content_rating type="oars-1.1">
6161
<content_attribute id="social-info">moderate</content_attribute>

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "Which macOS architectur
2525
project(rpi-imager LANGUAGES CXX C)
2626
set(IMAGER_VERSION_MAJOR 1)
2727
set(IMAGER_VERSION_MINOR 9)
28-
set(IMAGER_VERSION_PATCH 5)
28+
set(IMAGER_VERSION_PATCH 6)
2929
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.${IMAGER_VERSION_PATCH}")
3030
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},${IMAGER_VERSION_PATCH},0")
3131
add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}")

0 commit comments

Comments
 (0)