Skip to content

Commit 1ce08a1

Browse files
committed
Bump release notes
1 parent 8d6f1ee commit 1ce08a1

File tree

3 files changed

+50
-44
lines changed

3 files changed

+50
-44
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ release: clean cli-deps release-checks docs web check
301301
goreleaser release --clean
302302

303303
release-snapshot: clean cli-deps docs web check
304-
goreleaser release --snapshot --skip-publish --clean
304+
goreleaser release --snapshot --clean
305305

306306
release-checks:
307307
$(eval LATEST_TAG := $(shell git describe --abbrev=0 --tags | cut -c2-))

docs/install.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -30,37 +30,37 @@ deb/rpm packages.
3030

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

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

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

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

@@ -110,31 +110,31 @@ Manually installing the .deb file:
110110

111111
=== "x86_64/amd64"
112112
```bash
113-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_amd64.deb
113+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_amd64.deb
114114
sudo dpkg -i ntfy_*.deb
115115
sudo systemctl enable ntfy
116116
sudo systemctl start ntfy
117117
```
118118

119119
=== "armv6"
120120
```bash
121-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_armv6.deb
121+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_armv6.deb
122122
sudo dpkg -i ntfy_*.deb
123123
sudo systemctl enable ntfy
124124
sudo systemctl start ntfy
125125
```
126126

127127
=== "armv7/armhf"
128128
```bash
129-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_armv7.deb
129+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_armv7.deb
130130
sudo dpkg -i ntfy_*.deb
131131
sudo systemctl enable ntfy
132132
sudo systemctl start ntfy
133133
```
134134

135135
=== "arm64"
136136
```bash
137-
wget https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_arm64.deb
137+
wget https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_arm64.deb
138138
sudo dpkg -i ntfy_*.deb
139139
sudo systemctl enable ntfy
140140
sudo systemctl start ntfy
@@ -144,28 +144,28 @@ Manually installing the .deb file:
144144

145145
=== "x86_64/amd64"
146146
```bash
147-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_amd64.rpm
147+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_amd64.rpm
148148
sudo systemctl enable ntfy
149149
sudo systemctl start ntfy
150150
```
151151

152152
=== "armv6"
153153
```bash
154-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_armv6.rpm
154+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_armv6.rpm
155155
sudo systemctl enable ntfy
156156
sudo systemctl start ntfy
157157
```
158158

159159
=== "armv7/armhf"
160160
```bash
161-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_armv7.rpm
161+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_armv7.rpm
162162
sudo systemctl enable ntfy
163163
sudo systemctl start ntfy
164164
```
165165

166166
=== "arm64"
167167
```bash
168-
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_linux_arm64.rpm
168+
sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_linux_arm64.rpm
169169
sudo systemctl enable ntfy
170170
sudo systemctl start ntfy
171171
```
@@ -195,18 +195,18 @@ NixOS also supports [declarative setup of the ntfy server](https://search.nixos.
195195

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

201201
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
202202
`~/Library/Application Support/ntfy/client.yml` (sample included in the tarball).
203203

204204
```bash
205-
curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.12.0/ntfy_2.12.0_darwin_all.tar.gz > ntfy_2.12.0_darwin_all.tar.gz
206-
tar zxvf ntfy_2.12.0_darwin_all.tar.gz
207-
sudo cp -a ntfy_2.12.0_darwin_all/ntfy /usr/local/bin/ntfy
205+
curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.13.0/ntfy_2.13.0_darwin_all.tar.gz > ntfy_2.13.0_darwin_all.tar.gz
206+
tar zxvf ntfy_2.13.0_darwin_all.tar.gz
207+
sudo cp -a ntfy_2.13.0_darwin_all/ntfy /usr/local/bin/ntfy
208208
mkdir ~/Library/Application\ Support/ntfy
209-
cp ntfy_2.12.0_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
209+
cp ntfy_2.13.0_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
210210
ntfy --help
211211
```
212212

@@ -224,7 +224,7 @@ brew install ntfy
224224

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

230230
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

Lines changed: 19 additions & 13 deletions
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.13.0
6+
Released July 10, 2025
7+
8+
This is a relatively small release, mainly to support IPv6 and to add more sophisticated
9+
proxy header support. Quick reminder that if you like ntfy, **please consider sponsoring us**
10+
via [GitHub Sponsors](https://github.com/sponsors/binwiederhier) and [Liberapay](https://en.liberapay.com/ntfy/), or buying a [paid plan via the web app](https://ntfy.sh/app).
11+
ntfy will always remain open source.
12+
13+
**Features:**
14+
15+
* Full [IPv6 support](config.md#ipv6-support) for ntfy and the official ntfy.sh server ([#519](https://github.com/binwiederhier/ntfy/issues/519)/[#1380](https://github.com/binwiederhier/ntfy/pull/1380)/[ansible#4](https://github.com/binwiederhier/ntfy-ansible/pull/4))
16+
* Support `X-Client-IP`, `X-Real-IP`, `Forwarded` headers for [rate limiting](config.md#ip-based-rate-limiting) via `proxy-forwarded-header` and `proxy-trusted-hosts` ([#1360](https://github.com/binwiederhier/ntfy/pull/1360)/[#1252](https://github.com/binwiederhier/ntfy/pull/1252), thanks to [@pixitha](https://github.com/pixitha))
17+
* Add STDIN support for `ntfy publish` ([#1382](https://github.com/binwiederhier/ntfy/pull/1382), thanks to [@srevn](https://github.com/srevn))
18+
19+
**Languages**
20+
21+
* Update new languages from Weblate. Thanks to all the contributors!
22+
* Added Estonian (Esti), Galician (Galego), Romanian (Română), Slovak (Slovenčina) as new languages to the web app
23+
524
### ntfy server v2.12.0
625
Released May 29, 2025
726

@@ -1433,19 +1452,6 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
14331452

14341453
## Not released yet
14351454

1436-
### ntfy server v2.13.0 (UNRELEASED)
1437-
1438-
**Features:**
1439-
1440-
* Full [IPv6 support](config.md#ipv6-support) for ntfy and the official ntfy.sh server ([#519](https://github.com/binwiederhier/ntfy/issues/519)/[#1380](https://github.com/binwiederhier/ntfy/pull/1380)/[ansible#4](https://github.com/binwiederhier/ntfy-ansible/pull/4))
1441-
* Support `X-Client-IP`, `X-Real-IP`, `Forwarded` headers for [rate limiting](config.md#ip-based-rate-limiting) via `proxy-forwarded-header` and `proxy-trusted-hosts` ([#1360](https://github.com/binwiederhier/ntfy/pull/1360)/[#1252](https://github.com/binwiederhier/ntfy/pull/1252), thanks to [@pixitha](https://github.com/pixitha))
1442-
* Add STDIN support for `ntfy publish` ([#1382](https://github.com/binwiederhier/ntfy/pull/1382), thanks to [@srevn](https://github.com/srevn))
1443-
1444-
**Languages**
1445-
1446-
* Update new languages from Weblate. Thanks to all the contributors!
1447-
* Added Estonian (Esti), Galician (Galego), Romanian (Română), Slovak (Slovenčina) as new languages to the web app
1448-
14491455
### ntfy Android app v1.16.1 (UNRELEASED)
14501456

14511457
**Features:**

0 commit comments

Comments
 (0)