v1.9.2: Public release

This commit is contained in:
Tom Dewey 2024-10-02 15:53:01 +01:00 committed by Tom Dewey
parent fd5e6d5e2b
commit 5b7ae19e1c
6 changed files with 8 additions and 7 deletions

View file

@ -47,7 +47,7 @@ body:
label: Version
description: What version of our software did you last run?
options:
- 1.9.1 (Default)
- 1.9.2 (Default)
- 1.9.0
- 1.8.5
- 1.8.4

View file

@ -2,7 +2,7 @@ version: 1
project:
name: org.raspberrypi.rpi-imager
version: 1.9.1
version: 1.9.2
build:
cmake:

2
debian/changelog vendored
View file

@ -1,4 +1,4 @@
rpi-imager (1.9.1) unstable; urgency=medium
rpi-imager (1.9.2) unstable; urgency=medium
* Drive List: Expose only physical devices - not volumes
* i18n: German, Taiwanese, Catalan, Spanish, Slovak

View file

@ -1,6 +1,6 @@
[Desktop Entry]
Type=Application
Version=1.9.1
Version=1.9.2
Name=Raspberry Pi Imager
Name[zh_CN]=
Comment=Raspberry Pi Imager

View file

@ -55,7 +55,7 @@
<binary>rpi-imager</binary>
</provides>
<releases>
<release version="1.9.1" />
<release version="1.9.2" />
</releases>
<content_rating type="oars-1.1">
<content_attribute id="social-info">moderate</content_attribute>

View file

@ -11,8 +11,9 @@ set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "Which macOS architectur
project(rpi-imager LANGUAGES CXX C)
set(IMAGER_VERSION_MAJOR 1)
set(IMAGER_VERSION_MINOR 9)
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.1")
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},1,0")
set(IMAGER_VERSION_PATCH 2)
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.${IMAGER_VERSION_PATCH}")
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},${IMAGER_VERSION_PATCH},0")
add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}")
add_definitions(-DIMAGER_VERSION_CSV=${IMAGER_VERSION_CSV})
set(CMAKE_INCLUDE_CURRENT_DIR ON)