Skip to content

Commit e5c4225

Browse files
committed
Prepare for release, version 0.1.5
1 parent 7297018 commit e5c4225

File tree

7 files changed

+35
-7
lines changed

7 files changed

+35
-7
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cartero"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55

66
[features]

NEWS.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# News file for Cartero
22

3+
## [0.1.5] - 2025-02-15
4+
5+
### Changed
6+
7+
* Changed the error message when a request uses an unsupported protocol for clarity purposes.
8+
* Translation updates: Czech, French, Brazilian Portuguese.
9+
10+
## Fixed
11+
12+
* Prevents tabs from becoming unresponsive if a request fails in certain conditions.
13+
* Prevents requests from failing if they have a trailing or leading space.
14+
* Requests whose URL start with a variable (bound to something that starts with http or https) can be made again.
15+
316
## [0.1.4] - 2025-01-26
417

518
### Changed

build-aux/macos-build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ case "$1" in
88
devel)
99
BUNDLE_ID="es.danirod.Cartero.Devel"
1010
APP_NAME="Cartero (Devel)"
11-
APP_VERSION="0.1.4"
11+
APP_VERSION="0.1.5"
1212
MESON_FLAGS="-Dprofile=development"
1313
ICON_PATH="$PWD/data/icons/scalable/apps/es.danirod.Cartero.Devel.svg"
1414
DOC_ICON_PATH="$PWD/data/icons/scalable/mimetypes/es.danirod.Cartero.Devel-request.svg"
1515
;;
1616
stable)
1717
BUNDLE_ID="es.danirod.Cartero"
1818
APP_NAME="Cartero"
19-
APP_VERSION="0.1.4"
19+
APP_VERSION="0.1.5"
2020
MESON_FLAGS="-Dprofile=default"
2121
ICON_PATH="$PWD/data/icons/scalable/apps/es.danirod.Cartero.svg"
2222
DOC_ICON_PATH="$PWD/data/icons/scalable/mimetypes/es.danirod.Cartero-request.svg"

build-aux/macos-installer.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ function package_app() {
1818
rm -rf build/cartero-darwin-dmg
1919
}
2020

21-
package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.4.dmg"
22-
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.4-devel.dmg"
21+
package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.5.dmg"
22+
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.5-devel.dmg"

data/cartero.appdata.xml.in.in

+15
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,21 @@
5050
<color scheme_preference="dark" type="primary">#465563</color>
5151
</branding>
5252
<releases>
53+
<release date="2025-02-15" version="0.1.5">
54+
<description translate="no">
55+
<p>Changed:</p>
56+
<ul>
57+
<li>Changed the error message when a request uses an unsupported protocol for clarity purposes.</li>
58+
<li>Translation updates: Czech, French, Brazilian Portuguese.</li>
59+
</ul>
60+
<p>Fixed:</p>
61+
<ul>
62+
<li>Prevents tabs from becoming unresponsive if a request fails in certain conditions.</li>
63+
<li>Prevents requests from failing if they have a trailing or leading space.</li>
64+
<li>Requests whose URL start with a variable (bound to something that starts with http or https) can be made again.</li>
65+
</ul>
66+
</description>
67+
</release>
5368
<release date="2025-01-26" version="0.1.4">
5469
<description translate="no">
5570
<p>Changed:</p>

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
project(
1919
'cartero',
2020
'rust',
21-
version: '0.1.4',
21+
version: '0.1.5',
2222
meson_version: '>= 0.64',
2323
license: 'GPL-3.0-or-later',
2424
)

0 commit comments

Comments
 (0)