Skip to content

Commit 031a129

Browse files
committed
Bump version to 0.10.2
1 parent 67bee15 commit 031a129

File tree

5 files changed

+20
-36
lines changed

5 files changed

+20
-36
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.10.2] -- 2022-09-22
4+
5+
### Security release
6+
7+
- Fixes potential secret poisoning by the homeserver
8+
- A crash when validation malicious html
9+
10+
Thanks to the matrix.org security team for disclosing this issue.
11+
12+
An update is highly recommended. Otherwise you can temporarily protect against
13+
this issue by not verifying your own devices and not pressing the request button
14+
in the setting.
15+
316
## [0.10.1] -- 2022-09-07
417

518
### Highlights

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ include(GNUInstallDirs)
108108

109109
set(CPACK_PACKAGE_VERSION_MAJOR "0")
110110
set(CPACK_PACKAGE_VERSION_MINOR "10")
111-
set(CPACK_PACKAGE_VERSION_PATCH "1")
111+
set(CPACK_PACKAGE_VERSION_PATCH "2")
112112
set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
113113
set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
114114
set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

3-
version: 0.10.1-{build}
3+
version: 0.10.2-{build}
44

55
configuration: Release
66
image: Visual Studio 2019
@@ -31,8 +31,8 @@ build_script:
3131
# VERSION format: branch-master/branch-1.2
3232
# INSTVERSION format: x.y.z
3333
# WINVERSION format: 9999.0.0.123/1.2.0.234
34-
- if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.10.1
35-
- if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.10.1
34+
- if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.10.2
35+
- if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.10.2
3636
- if "%APPVEYOR_REPO_TAG%"=="false" if "%APPVEYOR_REPO_BRANCH%"=="master" set INSTVERSION=9999.0
3737
- if "%APPVEYOR_REPO_TAG%"=="false" set WINVERSION=%INSTVERSION%.0.%APPVEYOR_BUILD_NUMBER%
3838
# VERSION format: v1.2.3/v1.3.4
@@ -94,8 +94,8 @@ after_build:
9494
- copy %BUILD%\deploy\installer\gui\package.xml installer\packages\io.github.nhekoreborn.nheko\meta
9595
- copy %BUILD%\deploy\installer\gui\installscript.qs installer\packages\io.github.nhekoreborn.nheko\meta
9696
# Amend version and date
97-
- sed -i "s/__VERSION__/0.10.1/" installer\config\config.xml
98-
- sed -i "s/__VERSION__/0.10.1/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
97+
- sed -i "s/__VERSION__/0.10.2/" installer\config\config.xml
98+
- sed -i "s/__VERSION__/0.10.2/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
9999
- sed -i "s/__DATE__/%DATE%/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
100100
# Copy nheko data
101101
- xcopy NhekoData\*.* installer\packages\io.github.nhekoreborn.nheko\data\*.* /s /e /c /y

io.github.NhekoReborn.Nheko.yaml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,11 @@ cleanup:
2323
- /bin/mdb*
2424
- '*.a'
2525
- /libexec
26-
- /lib/girepository-1.0/
27-
- /lib/gst-validate-launcher/
28-
- /lib/gstreamer-1.0/include/
29-
- /lib/gstreamer-1.0/validate/
3026
- /lib/cmake/
31-
- /bin/gst-*
3227
- /bin/cmark
3328
- /bin/event_rpcgen.py
3429
- /bin/playout
3530
- /bin/secret-tool
36-
- /share/gir-1.0
3731
modules:
3832
- name: lmdb
3933
sources:
@@ -151,30 +145,6 @@ modules:
151145
- sha256: 1155fd1a83049767360e9a120c43c578145db3204d2b309eba49fbbedd0f4ed3
152146
type: archive
153147
url: https://github.com/nlohmann/json/archive/v3.10.4.tar.gz
154-
- buildsystem: meson
155-
name: gstreamer
156-
sources:
157-
- commit: ccf22e315cedf81e0075ab179ffb1b733da5206e
158-
tag: 1.20.3
159-
type: git
160-
url: https://gitlab.freedesktop.org/gstreamer/gstreamer.git
161-
config-opts:
162-
- -Dcompositor=enabled
163-
- -Dgl=enabled
164-
- -Dgood=enabled
165-
- -Dgst-plugins-good:pulse=enabled
166-
- -Dgst-plugins-good:qt5=enabled
167-
- -Dgst-plugins-good:rtp=enabled
168-
- -Dgst-plugins-good:rtpmanager=enabled
169-
- -Dgst-plugins-good:vpx=enabled
170-
- -Dbad=enabled
171-
- -Dgst-plugins-bad:dtls=enabled
172-
- -Dgst-plugins-bad:gl=enabled
173-
- -Dgst-plugins-bad:openh264=enabled
174-
- -Dgst-plugins-bad:opus=enabled
175-
- -Dgst-plugins-bad:srtp=enabled
176-
- -Dgst-plugins-bad:webrtc=enabled
177-
- -Dgst-plugins-bad:flite=disabled
178148
- buildsystem: qmake
179149
name: qt-jdenticon
180150
no-make-install: true

resources/nheko.appdata.xml.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
<url type="homepage">https://github.com/Nheko-Reborn/nheko</url>
6262
<update_contact>https://github.com/Nheko-Reborn</update_contact>
6363
<releases>
64+
<release date="2022-09-28" version="0.10.2"/>
6465
<release date="2022-09-07" version="0.10.1"/>
6566
<release date="2022-07-22" version="0.10.0"/>
6667
<release date="2022-03-25" version="0.9.3"/>

0 commit comments

Comments
 (0)