Skip to content

Commit

Permalink
Merge pull request #139 from Bastian-Krause/bst/prepare-1.3
Browse files Browse the repository at this point in the history
Prepare 1.3 Release
  • Loading branch information
ejoerns authored Oct 14, 2022
2 parents 30d2415 + a7c063f commit e19bc25
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 13 deletions.
14 changes: 14 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release 1.3 (released Oct 14, 2022)
-----------------------------------

.. rubric:: Enhancements

* Add option ``stream_bundle=true`` to allow using RAUC's HTTP(S) bundle
streaming capabilities instead of downloading and storing bundles separately.
[#130]
* Make error messages more consistent. [#138]

.. rubric:: Build System

* Switch to meson [#113]

Release 1.2 (released Jul 1, 2022)
----------------------------------

Expand Down
3 changes: 3 additions & 0 deletions config.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ auth_token = cb115a721af28f781b493fa467819ef5
# Temporay file RAUC bundle should be downloaded to
bundle_download_location = /tmp/bundle.raucb

# Do not download bundle, let RAUC use its HTTP streaming feature instead
#stream_bundle = true

# time in seconds to wait before retrying
retry_wait = 60

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'RAUC hawkBit Updater'
copyright = '2021, Lasse Klok Mikkelsen, Enrico Jörns, Bastian Krause'
copyright = '2018-2022, Lasse Klok Mikkelsen, Enrico Jörns, Bastian Krause'
author = 'Lasse Klok Mikkelsen, Enrico Jörns, Bastian Krause'

# The full version, including alpha/beta/rc tags
release = '1.2'
release = '1.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rauc-hawkbit-updater',
'c',
version : '1.2',
version : '1.3',
meson_version : '>=0.50',
default_options: [
'warning_level=3',
Expand Down
2 changes: 1 addition & 1 deletion src/config-file.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* SPDX-License-Identifier: LGPL-2.1-only
* SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2018-2020 Lasse K. Mikkelsen <[email protected]>, Prevas A/S (www.prevas.com)
*
* @file
Expand Down
2 changes: 1 addition & 1 deletion src/hawkbit-client.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* SPDX-License-Identifier: LGPL-2.1-only
* SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2018-2020 Lasse K. Mikkelsen <[email protected]>, Prevas A/S (www.prevas.com)
*
* @file
Expand Down
2 changes: 1 addition & 1 deletion src/rauc-hawkbit-updater.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* SPDX-License-Identifier: LGPL-2.1-only
* SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2018-2020 Lasse K. Mikkelsen <[email protected]>, Prevas A/S (www.prevas.com)
*
* @file
Expand Down
2 changes: 1 addition & 1 deletion src/rauc-installer.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* SPDX-License-Identifier: LGPL-2.1-only
* SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix
* SPDX-FileCopyrightText: 2018-2020 Lasse K. Mikkelsen <[email protected]>, Prevas A/S (www.prevas.com)
*
* @file
Expand Down
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Enrico Jörns <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion test/helper.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Enrico Jörns <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

import os
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion test/rauc_dbus_dummy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

import hashlib
import time
Expand Down
2 changes: 1 addition & 1 deletion test/test_basics.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Enrico Jörns <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

import re
from configparser import ConfigParser
Expand Down
2 changes: 1 addition & 1 deletion test/test_cancel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

from pexpect import TIMEOUT, EOF
import pytest
Expand Down
2 changes: 1 addition & 1 deletion test/test_install.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: LGPL-2.1-only
# SPDX-FileCopyrightText: 2021 Bastian Krause <[email protected]>, Pengutronix
# SPDX-FileCopyrightText: 2021-2022 Bastian Krause <[email protected]>, Pengutronix

from datetime import datetime, timedelta
from pathlib import Path
Expand Down

0 comments on commit e19bc25

Please sign in to comment.