Skip to content

Commit 7bd6424

Browse files
committed
Update changelog. Bump version.
1 parent fd45546 commit 7bd6424

File tree

10 files changed

+21
-15
lines changed

10 files changed

+21
-15
lines changed

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ pygmentsUseClasses = true
5454
weight = 7
5555

5656
[params]
57-
version = "3.0.0"
57+
version = "3.0.1"
5858

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.1-r1_klk_lpbs.ipk`:
72+
the package into a folder named `/user/.updates`. Example for `lora-gateway-bridge_3.0.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.1-r1_klk_lpbs.ipk
77+
wget https://artifacts.loraserver.io/vendor/kerlink/ibts/lora-gateway-bridge_3.0.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.1-r1_arm926ejste.ipk`):
104+
Example (assuming you want to install `lora-gateway-bridge_3.0.1-r1_arm926ejste.ipk`):
105105
{{<highlight bash>}}
106-
wget https://artifacts.loraserver.io/vendor/multitech/conduit/lora-gateway-bridge_2.7.1-r1_arm926ejste.ipk
106+
wget https://artifacts.loraserver.io/vendor/multitech/conduit/lora-gateway-bridge_3.0.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.1-r1_arm926ejste.ipk
113+
opkg install lora-gateway-bridge_3.0.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: 4 additions & 4 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.1-r1_kona_micro.ipk`:
157+
as argument. Example for `lora-gateway-bridge_3.0.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.1-r1_kona_micro.ipk --output lora-gateway-bridge.ipk
161+
curl https://artifacts.loraserver.io/vendor/tektelic/kona-micro/lora-gateway-bridge_3.0.1-r1_kona_micro.ipk --output lora-gateway-bridge.ipk
162162
{{</highlight>}}
163163

164164
### Install IPK package
@@ -226,11 +226,11 @@ the back of the gateway (the 9 characters above the 48V = 0.6A line).
226226

227227
Find the latest package at https://artifacts.loraserver.io/vendor/tektelic/kona-macro/
228228
and copy the URL to your clipboard. Then on the gateway use `curl` and use the link
229-
as argument. Example for `lora-gateway-bridge_2.7.1-r1_kona_macro.ipk`:
229+
as argument. Example for `lora-gateway-bridge_3.0.1-r1_kona_macro.ipk`:
230230

231231
{{<highlight bash>}}
232232
# curl URL --output lora-gateway-bridge.ipk
233-
curl https://artifacts.loraserver.io/vendor/tektelic/kona-macro/lora-gateway-bridge_2.7.1-r1_kona_macro.ipk --output lora-gateway-bridge.ipk
233+
curl https://artifacts.loraserver.io/vendor/tektelic/kona-macro/lora-gateway-bridge_3.0.1-r1_kona_macro.ipk --output lora-gateway-bridge.ipk
234234
{{</highlight>}}
235235

236236
### 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+
## v3.0.1
14+
15+
### Bugfixes
16+
17+
* Fix acquiring double read-lock (which could result in a deadlock). [#119](https://github.com/brocaar/lora-gateway-bridge/pull/119)
18+
1319
## v3.0.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="3.0.0"
4+
PACKAGE_VERSION="3.0.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="3.0.0"
4+
PACKAGE_VERSION="3.0.1"
55
REV="r1"
66

77

packaging/vendor/multitech/conduit/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="3.0.0"
4+
PACKAGE_VERSION="3.0.1"
55
REV="r1"
66

77

packaging/vendor/tektelic/kona-macro/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="3.0.0"
4+
PACKAGE_VERSION="3.0.1"
55
REV="r1"
66

77

packaging/vendor/tektelic/kona-micro/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="3.0.0"
4+
PACKAGE_VERSION="3.0.1"
55
REV="r1"
66

77

0 commit comments

Comments
 (0)