Skip to content

Commit 2f0ec88

Browse files
committedAug 17, 2023
Release bump
1 parent d9d3c4a commit 2f0ec88

File tree

2 files changed

+49
-48
lines changed

2 files changed

+49
-48
lines changed
 

‎docs/install.md

+30-30
Original file line numberDiff line numberDiff line change
@@ -29,37 +29,37 @@ deb/rpm packages.
2929

3030
=== "x86_64/amd64"
3131
```bash
32-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.tar.gz
33-
tar zxvf ntfy_2.6.2_linux_amd64.tar.gz
34-
sudo cp -a ntfy_2.6.2_linux_amd64/ntfy /usr/local/bin/ntfy
35-
sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_amd64/{client,server}/*.yml /etc/ntfy
32+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.tar.gz
33+
tar zxvf ntfy_2.7.0_linux_amd64.tar.gz
34+
sudo cp -a ntfy_2.7.0_linux_amd64/ntfy /usr/local/bin/ntfy
35+
sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_amd64/{client,server}/*.yml /etc/ntfy
3636
sudo ntfy serve
3737
```
3838

3939
=== "armv6"
4040
```bash
41-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.tar.gz
42-
tar zxvf ntfy_2.6.2_linux_armv6.tar.gz
43-
sudo cp -a ntfy_2.6.2_linux_armv6/ntfy /usr/bin/ntfy
44-
sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_armv6/{client,server}/*.yml /etc/ntfy
41+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.tar.gz
42+
tar zxvf ntfy_2.7.0_linux_armv6.tar.gz
43+
sudo cp -a ntfy_2.7.0_linux_armv6/ntfy /usr/bin/ntfy
44+
sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_armv6/{client,server}/*.yml /etc/ntfy
4545
sudo ntfy serve
4646
```
4747

4848
=== "armv7/armhf"
4949
```bash
50-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.tar.gz
51-
tar zxvf ntfy_2.6.2_linux_armv7.tar.gz
52-
sudo cp -a ntfy_2.6.2_linux_armv7/ntfy /usr/bin/ntfy
53-
sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_armv7/{client,server}/*.yml /etc/ntfy
50+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.tar.gz
51+
tar zxvf ntfy_2.7.0_linux_armv7.tar.gz
52+
sudo cp -a ntfy_2.7.0_linux_armv7/ntfy /usr/bin/ntfy
53+
sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_armv7/{client,server}/*.yml /etc/ntfy
5454
sudo ntfy serve
5555
```
5656

5757
=== "arm64"
5858
```bash
59-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.tar.gz
60-
tar zxvf ntfy_2.6.2_linux_arm64.tar.gz
61-
sudo cp -a ntfy_2.6.2_linux_arm64/ntfy /usr/bin/ntfy
62-
sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_arm64/{client,server}/*.yml /etc/ntfy
59+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.tar.gz
60+
tar zxvf ntfy_2.7.0_linux_arm64.tar.gz
61+
sudo cp -a ntfy_2.7.0_linux_arm64/ntfy /usr/bin/ntfy
62+
sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_arm64/{client,server}/*.yml /etc/ntfy
6363
sudo ntfy serve
6464
```
6565

@@ -109,31 +109,31 @@ Manually installing the .deb file:
109109

110110
=== "x86_64/amd64"
111111
```bash
112-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.deb
112+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.deb
113113
sudo dpkg -i ntfy_*.deb
114114
sudo systemctl enable ntfy
115115
sudo systemctl start ntfy
116116
```
117117

118118
=== "armv6"
119119
```bash
120-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.deb
120+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.deb
121121
sudo dpkg -i ntfy_*.deb
122122
sudo systemctl enable ntfy
123123
sudo systemctl start ntfy
124124
```
125125

126126
=== "armv7/armhf"
127127
```bash
128-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.deb
128+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.deb
129129
sudo dpkg -i ntfy_*.deb
130130
sudo systemctl enable ntfy
131131
sudo systemctl start ntfy
132132
```
133133

134134
=== "arm64"
135135
```bash
136-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.deb
136+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.deb
137137
sudo dpkg -i ntfy_*.deb
138138
sudo systemctl enable ntfy
139139
sudo systemctl start ntfy
@@ -143,28 +143,28 @@ Manually installing the .deb file:
143143

144144
=== "x86_64/amd64"
145145
```bash
146-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.rpm
146+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.rpm
147147
sudo systemctl enable ntfy
148148
sudo systemctl start ntfy
149149
```
150150

151151
=== "armv6"
152152
```bash
153-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.rpm
153+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.rpm
154154
sudo systemctl enable ntfy
155155
sudo systemctl start ntfy
156156
```
157157

158158
=== "armv7/armhf"
159159
```bash
160-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.rpm
160+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.rpm
161161
sudo systemctl enable ntfy
162162
sudo systemctl start ntfy
163163
```
164164

165165
=== "arm64"
166166
```bash
167-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.rpm
167+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.rpm
168168
sudo systemctl enable ntfy
169169
sudo systemctl start ntfy
170170
```
@@ -194,18 +194,18 @@ NixOS also supports [declarative setup of the ntfy server](https://search.nixos.
194194

195195
## macOS
196196
The [ntfy CLI](subscribe/cli.md) (`ntfy publish` and `ntfy subscribe` only) is supported on macOS as well.
197-
To install, please [download the tarball](https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_darwin_all.tar.gz),
197+
To install, please [download the tarball](https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_darwin_all.tar.gz),
198198
extract it and place it somewhere in your `PATH` (e.g. `/usr/local/bin/ntfy`).
199199

200200
If run as `root`, ntfy will look for its config at `/etc/ntfy/client.yml`. For all other users, it'll look for it at
201201
`~/Library/Application Support/ntfy/client.yml` (sample included in the tarball).
202202

203203
```bash
204-
curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_darwin_all.tar.gz > ntfy_2.6.2_darwin_all.tar.gz
205-
tar zxvf ntfy_2.6.2_darwin_all.tar.gz
206-
sudo cp -a ntfy_2.6.2_darwin_all/ntfy /usr/local/bin/ntfy
204+
curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_darwin_all.tar.gz > ntfy_2.7.0_darwin_all.tar.gz
205+
tar zxvf ntfy_2.7.0_darwin_all.tar.gz
206+
sudo cp -a ntfy_2.7.0_darwin_all/ntfy /usr/local/bin/ntfy
207207
mkdir ~/Library/Application\ Support/ntfy
208-
cp ntfy_2.6.2_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
208+
cp ntfy_2.7.0_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
209209
ntfy --help
210210
```
211211

@@ -223,7 +223,7 @@ brew install ntfy
223223

224224
## Windows
225225
The [ntfy CLI](subscribe/cli.md) (`ntfy publish` and `ntfy subscribe` only) is supported on Windows as well.
226-
To install, please [download the latest ZIP](https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_windows_amd64.zip),
226+
To install, please [download the latest ZIP](https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_windows_amd64.zip),
227227
extract it and place the `ntfy.exe` binary somewhere in your `%Path%`.
228228

229229
The default path for the client config file is at `%AppData%\ntfy\client.yml` (not created automatically, sample in the ZIP file).

‎docs/releases.md

+19-18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
Binaries for all releases can be found on the GitHub releases pages for the [ntfy server](https://github.com/binwiederhier/ntfy/releases)
33
and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/releases).
44

5+
### ntfy server v2.7.0
6+
Released August 17, 2023
7+
8+
**Features:**
9+
10+
* Add support for [Markdown formatting](publish.md#markdown-formatting) in web app ([#310](https://github.com/binwiederhier/ntfy/issues/310), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
11+
* Add support for right-to-left languages (RTL) in the web app ([#663](https://github.com/binwiederhier/ntfy/issues/663), thanks to [@nimbleghost](https://github.com/nimbleghost))
12+
13+
**Bug fixes + maintenance:**
14+
15+
* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
16+
* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
17+
* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
18+
* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
19+
20+
**Documentation:**
21+
22+
* Update docs for Apache config ([#819](https://github.com/binwiederhier/ntfy/pull/819), thanks to [@nisbet-hubbard](https://github.com/nisbet-hubbard))
23+
524
## ntfy server v2.6.2
625
Released June 30, 2023
726

@@ -1251,24 +1270,6 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
12511270

12521271
## Not released yet
12531272

1254-
### ntfy server v2.7.0 (UNRELEASED)
1255-
1256-
**Features:**
1257-
1258-
* Add support for [Markdown formatting](publish.md#markdown-formatting) in web app ([#310](https://github.com/binwiederhier/ntfy/issues/310), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
1259-
* Add support for right-to-left languages (RTL) in the web app ([#663](https://github.com/binwiederhier/ntfy/issues/663), thanks to [@nimbleghost](https://github.com/nimbleghost))
1260-
1261-
**Bug fixes + maintenance:**
1262-
1263-
* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
1264-
* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
1265-
* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
1266-
* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
1267-
1268-
**Documentation:**
1269-
1270-
* Update docs for Apache config ([#819](https://github.com/binwiederhier/ntfy/pull/819), thanks to [@nisbet-hubbard](https://github.com/nisbet-hubbard))
1271-
12721273
### ntfy Android app v1.16.1 (UNRELEASED)
12731274

12741275
**Features:**

0 commit comments

Comments
 (0)