Skip to content

Commit 0ab802a

Browse files
committed
Update changelog. Bump version.
1 parent 6935641 commit 0ab802a

File tree

9 files changed

+20
-14
lines changed

9 files changed

+20
-14
lines changed

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ pygmentsUseClasses = true
4040
weight = 5
4141

4242
[params]
43-
version = "2.7.0"
43+
version = "2.7.1"

docs/content/gateway/kerlink.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ for login instructions.
6969

7070
Find the latest package at https://artifacts.loraserver.io/vendor/kerlink/ibts/
7171
and copy the URL to your clipboard. Then on the gateway use `wget` to download
72-
the package into a folder named `/user/.updates`. Example for `lora-gateway-bridge_2.7.0-r1_klk_lpbs.ipk`:
72+
the package into a folder named `/user/.updates`. Example for `lora-gateway-bridge_2.7.1-r1_klk_lpbs.ipk`:
7373

7474
{{<highlight bash>}}
7575
mkdir -p /user/.updates
7676
cd /user/.updates
77-
wget https://artifacts.loraserver.io/vendor/kerlink/ibts/lora-gateway-bridge_2.7.0-r1_klk_lpbs.ipk
77+
wget https://artifacts.loraserver.io/vendor/kerlink/ibts/lora-gateway-bridge_2.7.1-r1_klk_lpbs.ipk
7878
{{</highlight>}}
7979

8080
To trigger the iBTS gateway to install / update the package, run the following commands:

docs/content/gateway/multitech.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ opkg update
101101

102102
2. Download the latest `lora-gateway-bridge` `.ipk` package from:
103103
[https://artifacts.loraserver.io/vendor/multitech/conduit/](https://artifacts.loraserver.io/vendor/multitech/conduit/).
104-
Example (assuming you want to install `lora-gateway-bridge_2.7.0-r2_arm926ejste.ipk`):
104+
Example (assuming you want to install `lora-gateway-bridge_2.7.1-r1_arm926ejste.ipk`):
105105
{{<highlight bash>}}
106-
wget https://artifacts.loraserver.io/vendor/multitech/conduit/lora-gateway-bridge_2.7.0-r2_arm926ejste.ipk
106+
wget https://artifacts.loraserver.io/vendor/multitech/conduit/lora-gateway-bridge_2.7.1-r1_arm926ejste.ipk
107107
{{< /highlight >}}
108108

109109
3. Now this `.ipk` package is stored on the Conduit, you can install it
110110
using the `opkg` package-manager utility. Example (assuming the same
111111
`.ipk` file):
112112
{{<highlight bash>}}
113-
opkg install lora-gateway-bridge_2.7.0-r2_arm926ejste.ipk
113+
opkg install lora-gateway-bridge_2.7.1-r1_arm926ejste.ipk
114114
{{< /highlight >}}
115115

116116
4. Update the MQTT connection details so that LoRa Gateway Bridge is able to

docs/content/gateway/tektelic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ the back of the gateway (the 9 characters above the 12V = 1A line).
154154

155155
Find the latest package at https://artifacts.loraserver.io/vendor/tektelic/kona-micro/
156156
and copy the URL to your clipboard. Then on the gateway use `curl` and use the link
157-
as argument. Example for `lora-gateway-bridge_2.7.0-r6_kona_micro.ipk`:
157+
as argument. Example for `lora-gateway-bridge_2.7.1-r1_kona_micro.ipk`:
158158

159159
{{<highlight bash>}}
160160
# curl URL --output lora-gateway-bridge.ipk
161-
curl https://artifacts.loraserver.io/vendor/tektelic/kona-micro/lora-gateway-bridge_2.7.0-r6_kona_micro.ipk --output lora-gateway-bridge.ipk
161+
curl https://artifacts.loraserver.io/vendor/tektelic/kona-micro/lora-gateway-bridge_2.7.1-r1_kona_micro.ipk --output lora-gateway-bridge.ipk
162162
{{</highlight>}}
163163

164164
### Install IPK package

docs/content/overview/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ description: Lists the changes per LoRa App Server release, including steps how
1010

1111
# Changelog
1212

13+
## v2.7.1
14+
15+
### Bugfixes
16+
17+
* Fix `rxpk.brd` parsing for some packet-forwarders. ([#104](https://github.com/brocaar/lora-gateway-bridge/issues/104))
18+
1319
## v2.7.0
1420

1521
### Features

packaging/vendor/kerlink/ibts/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/env bash
22

33
PACKAGE_NAME="lora-gateway-bridge"
4-
PACKAGE_VERSION="2.7.0"
4+
PACKAGE_VERSION="2.7.1"
55
REV="r1"
66

77

packaging/vendor/kerlink/ifemtocell/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/env bash
22

33
PACKAGE_NAME="lora-gateway-bridge"
4-
PACKAGE_VERSION="2.7.0"
4+
PACKAGE_VERSION="2.7.1"
55
REV="r1"
66

77

packaging/vendor/multitech/conduit/package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/env bash
22

33
PACKAGE_NAME="lora-gateway-bridge"
4-
PACKAGE_VERSION="2.7.0"
5-
REV="r2"
4+
PACKAGE_VERSION="2.7.1"
5+
REV="r1"
66

77

88
PACKAGE_URL="https://artifacts.loraserver.io/downloads/lora-gateway-bridge/lora-gateway-bridge_${PACKAGE_VERSION}_linux_armv5.tar.gz"

packaging/vendor/tektelic/kona-micro/package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/env bash
22

33
PACKAGE_NAME="lora-gateway-bridge"
4-
PACKAGE_VERSION="2.7.0"
5-
REV="r6"
4+
PACKAGE_VERSION="2.7.1"
5+
REV="r1"
66

77

88
PACKAGE_URL="https://artifacts.loraserver.io/downloads/lora-gateway-bridge/lora-gateway-bridge_${PACKAGE_VERSION}_linux_armv5.tar.gz"

0 commit comments

Comments
 (0)